body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f1f7f6;
    color: #1e3932;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.auth-form {
    background: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 2.9rem;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.auth-form h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.auth-form .step-info {
    font-size: 0.9rem;
    color: #7d7d7d;
    margin-bottom: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.auth-form label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.3rem;
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.auth-form input:focus {
    border-color: #1e3932;
    outline: none;
    background-color: #ffffff;
}

.auth-form .password-container {
    position: relative;
}

.auth-form .password-container input {
    padding-right: 13px;
}

.auth-form .password-container i {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #1e3932;
}

.auth-form .next-btn {
    width: 100%;
    padding: 0.8rem;
    background: #1e3932;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.auth-form .next-btn:hover {
    background: #155b4b;
}

.auth-form .switch-link {
    margin-top: 1rem;
    color: #333;
}

.auth-form .switch-link a {
    color: #1e3932;
    text-decoration: none;
}

.auth-form .switch-link a:hover {
    text-decoration: underline;
}

.back-to-home {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 1.5rem;
    color: #1e3932;
    cursor: pointer;
}

.back-to-home i:hover {
    color: #155b4b;
}

.form-group .error-message {
    color: #ff0000;
    /* Red for error */
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}