.custom-login-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.form-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}
.form-group label {
    width: 150px;
    margin-right: 10px;
}
.input {
    flex: 1;
    padding: 8px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.remember-me-group {
    display: flex;
    align-items: center;
    gap: 6px;
}
.button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #fff;
    background-color: #52A086;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.button:hover {
    background-color: #418371;
}
.signup-link, .lost-password-link {
    margin-top: 10px;
    text-align: center;
}
.signup-link a, .lost-password-link a {
    color: #52A086;
    text-decoration: underline;
}
.login-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}
.login-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}
#login-loading, #signup-loading, #reset-loading {
    text-align: center;
    margin-top: 10px;
    color: #52A086;
}