.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.login-container,
.forgot-password-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box,
.forgot-password-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.login-box h2,
.forgot-password-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.instructions {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

.login-btn,
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover,
.submit-btn:hover {
    background-color: #0056b3;
}

.login-btn:disabled,
.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.error-message,
.message {
    color: #dc3545;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.message.success {
    color: #28a745;
}

.message.error {
    color: #dc3545;
}

.forgot-password-link,
.back-to-login {
    /* display: block;
    text-align: center; */
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}

.forgot-password-link:hover,
.back-to-login:hover {
    text-decoration: underline;
}

/* Add some basic reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
} 

.signup-link {
    display: block;
    text-align: center;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}