#custom-login-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
}

#custom-login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#custom-login-form input[type="text"],
#custom-login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#custom-login-form button {
    width: 100%;
    padding: 10px;
    background-color: #2c7be5;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#custom-login-form button:hover {
    background-color: #1a5fcc;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}

.success-message {
    color: green;
}


#forgot-password-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

#forgot-password-form h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

#forgot-password-form p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

#forgot-password-form label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

#forgot-password-form input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#forgot-password-form input[type="email"]:focus {
    border-color: #3498db;
    outline: none;
}

#forgot-password-form button {
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

#forgot-password-form button:hover {
    background-color: #2980b9;
}

#forgot-password-form #back-to-login {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #3498db;
    text-decoration: none;
}

#forgot-password-form #back-to-login:hover {
    text-decoration: underline;
}
