/* Start custom CSS for html, class: .elementor-element-52f34e7 *//* ARTHOVIA FORM STYLES */

.arthovia-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    max-width: 450px;
    margin: 0 auto;
    animation: arthovia-slideUp 0.6s ease-out;
}

@keyframes arthovia-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.arthovia-form-title {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
}

.arthovia-form-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 14px;
}

.arthovia-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.arthovia-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arthovia-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arthovia-form input[type="text"] {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: #333;
}

.arthovia-form input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.arthovia-form input[type="text"]::placeholder {
    color: #bbb;
}

.arthovia-submit-form {
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: arthovia-buttonPulse 2s infinite;
}

@keyframes arthovia-buttonPulse {
    0% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(102, 126, 234, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
}

@keyframes arthovia-shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.arthovia-submit-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: arthovia-shimmer 3s infinite;
}

.arthovia-submit-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.arthovia-submit-form:active {
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .arthovia-form-container {
        padding: 35px 25px;
    }

    .arthovia-form-title {
        font-size: 24px;
    }

    .arthovia-form input[type="text"],
    .arthovia-submit-form {
        font-size: 16px;
        padding: 12px 14px;
    }
}/* End custom CSS */