:root {
    --primary-color: black;
    --secondary-color: white;
    --font-primary: black;
    --font-secondary: #636568;
    --ff: "Google Sans Flex", sans-serif;
    --h1: bold 54px/64px var(--ff);
    --h2: bold 36px/36px var(--ff);
    --h3: bold 24px/30px var(--ff);
    --links: bold 18px/30px var(--ff);
    --p: 18px/30px var(--ff);
    --subtext: 12px/20px var(--ff);
    --transition: 0.3s ease-in-out;
    --shadow: #00000030 0px 0px 10px 0px;
    --shadowdark: #00000030 0px 5px 10px 5px;
}

.contact-container {
    font-family: 'Outfit';
    height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: space-evenly; */
    justify-content: center;
    gap: 5vw;
}

.contact-container>div,
.contact-container>form {
    /* width: 40%; */
    width: clamp(200px, 50%, 500px);
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    background-color: white;
    border-radius: 25px;
    padding: 2vw;
    max-width: 500px;
    box-shadow: rgba(79, 93, 224, 0.32) 0px 10px 30px;
}

.contact-left-title h2 {
    font-weight: 600;
    /* color: #a363aa; */
    color: white;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 120px;
    height: 5px;
    /* background-color: #a363aa; */
    border-radius: 10px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #656565, #7f42a7, #6600c5, #5300a0, #757575, #656565);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.contact-inputs {
    width: 100%;
    /* max-width: 400px; */
    height: 50px;
    margin: auto;
    border: none;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
    background-color: #FAFAFA;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus {
    border: 2px solid #ff994f;
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-left button{
    display: flex;
    width: max-content;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(to right, #656565, #7f42a7, #6600c5, #5300a0, #757575, #656565);
    background-size: 200%;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.contact-right a {
    padding: 15px 30px;
    font-size: 16px;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    background: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.contact-left button:hover,
.contact-right a:hover{
    scale: 1.05;
}

.contact-right a {
    width: max-content;
    text-decoration: none;
    margin-top: 10px;
}

.contact-left button img {
    height: 15px;
}

.contact-right .content {
    display: flex;
    flex-direction: column;
    font-family: var(--ff);
}

.contact-right h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-right span {
    margin-bottom: 0px;
    color: #a9a9a9;
}

.contact-right p {
    margin-bottom: 12px;
}

.contact-right img {
    width: 500px;
}

@media (max-width: 600px) {
    #main{
        padding: 0 1.2rem;
    }
    .contact-container {
        display: block;
        height: auto;
        margin: 150px auto;
    }

    .contact-container>div,
    .contact-container>form {
        width: 100%;
        margin: auto;
    }

    .contact-container>form{
        padding: 20px 15px;
        border-radius: 33px;
    }
    .contact-container>div{
        margin-bottom: 50px;
    }
}