@media(min-width:768px){.elementor-10162 .elementor-element.elementor-element-52fe03b{width:20%;}.elementor-10162 .elementor-element.elementor-element-6aa7ed50{width:59.333%;}.elementor-10162 .elementor-element.elementor-element-6f91a96{width:20%;}}/* Start custom CSS for shortcode, class: .elementor-element-17a2ddee */#cg-login-form {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: white;
}

#cg-login-form dl {
    margin: 0;
    padding: 0;
    width: 100%;
}

#cg-login-form dt {
    margin: 20px 0 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

#cg-login-form dd {
    margin: 0 0 15px;
    padding: 0;
}

/* Input fields */
#cg-login-form input[type="email"],
#cg-login-form input[type="password"] {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Input focus effects */
#cg-login-form input[type="email"]:focus,
#cg-login-form input[type="password"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
    outline: none;
}

/* Submit button styling */
#cg-login-form input[type="submit"] {
    padding: 16px 40px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Button animations */
#cg-login-form input[type="submit"]:hover {
    background: #0056b3;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

#cg-login-form input[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Forgot password link */
#cg-login-form a {
    color: #666;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: color 0.3s ease;
    font-size: 14px;
}

#cg-login-form a:hover {
    color: #007bff;
    text-decoration: underline;
}
input[type="submit"] {
    padding: 12px 35PX ! IMPORTANT;
    LINE-HEIGHT: 1.3EM;
}
/* Responsive adjustments */
@media (min-width: 768px) {
    #cg-login-form {
        padding: 50px;
    }
    
    #cg-login-form input[type="submit"] {
        width: auto;
    }
}

/* Add ripple animation */
@keyframes buttonRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}/* End custom CSS */