body {
    background-color: #f0f7f4;
    font-family: 'Outfit', sans-serif;
}

.container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
    /* Center the container */
    margin-top: 20vh;
    /* Adjust based on screen height */
}

.container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #d7b053;
    text-align: center;
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #d7b053;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #614f0e;
    box-shadow: none;
}

.btn {
    border: none;
    border-radius: 10px;
    background-color: #c8ad6d;
    color: #fff;
    width: 50%;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #906c11;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
}

.signup-link a {
    color: #d5b466;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}