@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


.main{
    height: 100vh;

    background-image: url(../images/contact_us_back2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

footer{
    background-color: #000 !important;

}

.blur{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b7;
}

.title {
    position: relative;
    z-index: 9;
    font-weight: 600;
    text-align: center;
    padding: 15px 0 30px 0;
    line-height: 1.2em;
    font-size: 3em;
    background: linear-gradient(125deg, #B380FF 8%, #7AF0FF 43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.buttonConect{
    position: relative;
    z-index: 9;
    margin: 0 auto;
    display: block;
    width: 200px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #000;
    background:  linear-gradient(143deg, #B380FF 10%, #7AF0FF 90%);
    border-radius: 0.125em;
    padding: 12px 18px;
    transition: .2s;
}

.buttonConect:hover{
    transform: scale(1.1);
    opacity: 9;
}


@media(max-width: 764px) {
    .title{
        font-size: 2em;
    }
}

.contact-main {
    background: #000 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.contact-content {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 24px #7AF0FF55, 0 1px 2px #000;
    position: relative;
}
.contact-title::after {
    content: "";
    display: block;
    margin: 16px auto 0 auto;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #B380FF 0%, #7AF0FF 100%);
    transition: width 0.3s;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1.1em;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #7AF0FF;
    box-shadow: 0 0 8px #7AF0FF88;
}

.contact-form button {
    background: linear-gradient(90deg, #B380FF 0%, #7AF0FF 100%);
    color: #000;
    font-weight: 700;
    font-size: 1.1em;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px #7AF0FF33;
}

.contact-form button:hover,
.contact-form button:focus {
    background: linear-gradient(90deg, #7AF0FF 0%, #B380FF 100%);
    color: #fff;
    box-shadow: 0 4px 24px #B380FF55;
}

@media (max-width: 600px) {
    .contact-content {
        max-width: 98vw;
        padding: 0 8px;
    }
    .contact-title {
        font-size: 1.5em;
    }
}