/* Add these styles to your existing login-form.css file */

.forgot-password-link,
.back-to-login-link {
    margin-top: 15px;
    text-align: center;
}

.forgot-password-link a,
.back-to-login-link a {
    color: #1c3144;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password-link a:hover,
.back-to-login-link a:hover {
    text-decoration: underline;
}

#ocoaching-forgot-password-form p {
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
}

.form-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}



.ocoaching-login-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ocoaching-login-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.ocoaching-login-form .form-group {
    margin-bottom: 1.5rem;
}

.ocoaching-login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.ocoaching-login-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.ocoaching-login-form button {
    width: 100%;
    padding: 0.75rem;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ocoaching-login-form button:hover {
    background-color: #005177;
}

.form-message {
    margin: 1rem 0;
    padding: 0.75rem;
    border-radius: 4px;
    text-align: center;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}