/* Custom Login Form Styles */
#custom-login-form {
    max-width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

#custom-login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.login-foot {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    column-gap: 30px;
}
.login-foot a {
    color: #000000;
}
.login-foot a:hover {
    color: #000000;
}
#custom-login-form input[type="text"],
#custom-login-form input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 2px solid #a6a6a6;
    border-radius: 4px;
}
#custom-login-form input[type="text"]:focus,
#custom-login-form input[type="password"]:focus {
    outline: none;
    border-color: #430359; 
    box-shadow: 0 0 0 2px rgba(75, 0, 130, 0.2); 
}

#custom-login-form input[type="submit"] {
    background: #430359;
    color: white;
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #430359;
}

#custom-login-form input[type="submit"]:hover {
    background-color: white  !important;
    color: #430359  !important;
    border: 1px solid #430359   !important;
}

.error {
    color: #dc3232;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #dc3232;
    border-radius: 3px;
    background: #fff;
}