/* Center the form and control sizing */
.login-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
   
    padding-top: 30px;
}

.login-container {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding: 2px;
 

/* Form control sizing - exact match to login CSS */
.form-control {
    width: 300px;
    padding: 4px;
    border: 1px solid #999;
    background-color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #2a5f0e;
    box-shadow: 0 0 3px rgba(42, 95, 14, 0.3);
}

/* Additional styles for forgot password specific elements */
.message-text {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 13px;
}

/* Ensure proper form group alignment - exact match to login CSS */
.form-group {
    margin-bottom: 6px;
    display: table;
    width: 100%;
}

.form-group label {
    display: table-cell;
    width: 100px;
    vertical-align: top;
    color: #2a5f0e;
    font-weight: bold;
    font-size: 14px;
    padding-top: 2px;
}

.form-control-wrapper {
    display: table-cell;
    vertical-align: top;
}

/* Button positioning - exact match to login CSS */
.btn-login {
    background-color: #1a1717ff;
    color: white;
    padding: 6px 16px;
    border: 1px solid #4a7a2a;
    cursor: pointer;
    font-size: 14px;
    margin-left: 100px;
    margin-top: 8px;
}

.btn-login:hover {
    background-color: #1a1a1aff;
}

/* Footer styling - exact match to login CSS */
.register-link {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 13px;
}

.register-link a {
    color: #2a5f0e;
    text-decoration: none;
}

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

.register-link p {
    margin: 3px 0;
}

/* Form errors - exact match to login CSS */
.form-errors {
    color: #cc0000;
    font-size: 12px;
    margin: 2px 0 0 0;
    padding: 0;
    list-style: none;
}

}