/* Ensure the entire page uses Flexbox correctly */
html, body {
    height: 100%;
    margin: 0;
}

body{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background: conic-gradient(from 0deg, white, rgb(137, 84, 92),  rgb(137, 84, 92), white);
    /* background: #00BFFF; */
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow-y: hidden;
}

.authdiv {
    background-color: rgb(247, 246, 245);
    /* border: 1px solid black; */
    border-radius: 10px;
    height: auto;
    padding: 10px;  /* Optional: adds padding inside .authdiv */
    box-sizing: border-box;
    position: relative;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



input[type="text"], input[type="password"], input[type="email"]{
    padding: 10px;
    width: 85%;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

button{
    /* margin-bottom: 10px; */
    padding: 10px 20px;
    border-radius: 10px;
    width: 85%;
    border: none;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right, #4caf50, #45a049);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .siz{
    font-size: 16px;
  }