body{
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    background-color: rgb(136, 89, 28);
    background-size: cover;
    justify-content: center;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}

.form-container{
    max-width: 400px;
    width: 100%;
    padding: 40px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: antiquewhite;
    border-radius: 20px ;
    backdrop-filter: blur(10px);
}
.form-container h3{
    text-align: center;
    margin-bottom: 10px;
    color: black;
    font-weight: 700;
}

 .input-container{
    position: relative;
    margin-bottom: 20px; 
} 

.input-container input{
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
    box-sizing: border-box;
    background: transparent;
}

.input-container input:hover{
    border-color: #888;
    box-shadow: 0 0 8px #888;
}

.submit{
    width: 100%;
    padding: 15px;
    color: black;
    font-weight: bold;
    background:white; ;
    border-radius: 30px;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 0 5px black;
    cursor: pointer;

}
.submit:hover{
    background: #f0f0f0;
    box-shadow: 0 0 8px #888;
}

.signup, .login {
    text-align: center;
    color: black;
    font-weight: 500;
}
.signup, .login  a{
    color: black;
    text-decoration: none;
    font-weight: 600;
}
.signup, .login  a:hover{
    text-decoration: underline;
}