.auth-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 0 0px;
}

.auth-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 9px 10px 30px rgba(0, 0, 0, 0.09);
    border: 1px solid #dceed3;
    align-items: center;
    display: flex; 
    flex-direction: column;

}

.auth-card h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #154116;
}

.auth-subtitle {
    text-align: center;
    width:100%;
    font-size: larger;
    color: #2d2c2c;
    margin-bottom: 1.2rem;
    margin:  auto;  
}
.auth-form {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column; /* Stack inputs and button vertically */
    align-items: center;    /* Center them horizontally */
}
.auth-form p {
    width: 100%;
    margin: 1.2rem 0;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3e3d3d;
}

.auth-form input,
.auth-form textarea {
    box-sizing: border-box; 
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.auth-form input:focus {
    outline: none;
    border-color: #157722;
    box-shadow: 0 0 0 3px rgba(21,119,86,0.15);
}

.btn-submit {
    width: 70%;
    padding: 14px;
    background: #157725;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-submit:hover {
    background: #0d5a41;
}

.auth-links {
    text-align: center;
    margin-top: 1.1rem;
    font-size: 0.95rem;
}

.auth-links a {
    color: #157729;
    font-size: large;
}
a {
    text-decoration: none !important;
}
.auth-links a:hover {
    text-decoration: underline;
}

.success-card {
    text-align: center;
    font-size: 1.0rem;
   
}

.success-card p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.error-message {
    color: #c53030;
    font-weight: 500;
    margin: 1rem 0;
    text-align: center;
}