/* General Form Styling */
.l019-form-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f3e5f5, #e1f5fe); /* Light purple/blue gradient */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    font-family: sans-serif;
}

.l019-form-container h2 {
    text-align: center;
    color: #6a1b9a; /* Deep Purple */
    margin-bottom: 25px;
    font-size: 24px;
}

.l019-form-container .form-row {
    margin-bottom: 20px;
}

.l019-form-container label {
    display: block;
    margin-bottom: 8px;
    color: #4a4a4a;
    font-weight: 600;
}

.l019-form-container input[type="text"],
.l019-form-container input[type="email"],
.l019-form-container input[type="password"],
.l019-form-container input[type="url"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.l019-form-container input:focus {
    border-color: #ad1457; /* Pink */
    box-shadow: 0 0 8px rgba(173, 20, 87, 0.2);
    outline: none;
}

.l019-form-container .button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #ad1457, #6a1b9a); /* Pink to Purple */
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.l019-form-container .button:hover {
    opacity: 0.9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.l019-form-container .error-message {
    color: #d32f2f; /* Red */
    background-color: #ffcdd2;
    border: 1px solid #d32f2f;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

/* Registration Form Specifics */
#l019-registration-form .profile-image-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
#profile-image-preview {
    border: 2px solid #6a1b9a;
}
#password-strength-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

#password-strength-progress {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background-color 0.3s ease;
}

#password-strength-text {
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Login Form Specifics */
.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: auto;
}
.remember-me label {
    margin-bottom: 0;
}

/* Logout Button */
.logout-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d32f2f;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}
.logout-button:hover {
    background-color: #c62828;
}

/* Mobile Friendly */
@media (max-width: 600px) {
    .l019-form-container {
        margin: 20px;
        padding: 20px;
    }
}