﻿
/*
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
*/

*:focus {
    /*border: 1px solid #fff !important;*/
    border-color: #ffffff !important;
    box-shadow: 0px 0px 8px 2px #d9d9d9ff !important;
    outline: none;
}

h3 {
    padding: 12px;
    font-size: 1.4rem;
}

.contact-form-container {
    /*background: white;*/

    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    border: 0px solid #767676;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .form-header h2 {
        /*color: #333;*/
        font-weight: 600;
        margin-bottom: 10px;
    }

    .form-header p {
        /*color: #666;*/
        margin: 0;
    }

.form-icon {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, transparent 0%, #7878788c 100%);
    border: 1px solid #767676;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.form-label {
    font-weight: 500;
    /*color: #333;*/
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        /*border-color: #667eea;*/
        /*box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);*/
    }

    .form-control::placeholder {
        color: #999;
    }

.input-group-text {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: #111111d3;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.input-group:focus-within .input-group-text {
    /*border-color: #667eea;*/
}

.btn-send {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, transparent 0%, #7878788c 100%);
    border: 1px solid #767676;
    /*border: none;*/
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
}

    .btn-send:hover {
        transform: translateY(-2px);
        /*box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);*/
        box-shadow: 0 10px 25px #7878788c;
        color: white;
        background: linear-gradient(135deg, transparent 0%, #787878ff 100%);
    }

    .btn-send:active {
        transform: translateY(0);
    }

    .btn-send:disabled {
        opacity: 0.2;
    }

.form-floating {
    margin-bottom: 20px;
}

    .form-floating > label {
        color: #666;
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 30px 20px;
    }
}

.div-spinner {
    display: flex;
    margin: 0 auto;
    width: 3.5rem;
    height: 3.5rem;
    text-align: center;
    padding-left: 0.5rem;
    display: none;
}

.send-email-spinner {
    width: 2.4rem;
    height: 2.4rem;
}


.error-field input, .error-field textarea {
    border: 1px solid red;
    box-shadow: 4px 4px 12px rgb(148, 0, 0);
    background: linear-gradient(135deg, #ffededff 0%, #ffc6c6ff 100%);
}


/*.cf-turnstile .main-wrapper {
    border: 3px solid red !important;
}
*/
.captcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

    
