/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */


/* Contact Form 7 - IPS Contact Form Styling */

.ips-contact-form {
    max-width: 520px;
    width: 100%;
}

.ips-contact-form .ips-form-group {
    margin-bottom: 18px;
}

.ips-contact-form label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #0b2341;
}

.ips-contact-form input[type="text"],
.ips-contact-form input[type="email"],
.ips-contact-form textarea {
    width: 100%;
    border: 1px solid #d8dce3;
    border-radius: 8px;
    background: #ffffff;
    padding: 13px 15px;
    font-size: 15px;
    color: #0b2341;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.ips-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.ips-contact-form input[type="text"]:focus,
.ips-contact-form input[type="email"]:focus,
.ips-contact-form textarea:focus {
    border-color: #2f5fad;
    box-shadow: 0 0 0 3px rgba(47, 95, 173, 0.12);
}

.ips-contact-form input::placeholder,
.ips-contact-form textarea::placeholder {
    color: #8a95a3;
}

.ips-contact-form .ips-form-submit {
    margin-top: 8px;
}

.ips-contact-form input[type="submit"] {
    background: #ff7a00;
    color: #ffffff;
    border: 2px solid #ff7a00;
    border-radius: 8px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ips-contact-form input[type="submit"]:hover {
    background: #2f5fad;
    border-color: #2f5fad;
    color: #ffffff;
}

/* Contact Form 7 validation messages */

.ips-contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
    color: #d63638;
}

.ips-contact-form .wpcf7-response-output {
    margin: 18px 0 0 0 !important;
    padding: 12px 15px !important;
    border-radius: 8px;
    font-size: 14px;
}



/* Mobile friendly */

@media (max-width: 767px) {
    .ips-contact-form {
        max-width: 100%;
    }

    .ips-contact-form input[type="text"],
    .ips-contact-form input[type="email"],
    .ips-contact-form textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    .ips-contact-form input[type="submit"] {
        width: 100%;
    }
}