:root {
    --primary-color: #010712;
    --secondary-color: #818386;
    --bg-color: white;
    --button-color: #3B3636;
    --h1-color: #3F444C;
}

[data-theme="dark"] {
    --primary-color: #FCFDFD;
    --secondary-color: #818386;
    --bg-color: #010712;
    --button-color: #818386;
    --h1-color: #FCFDFD;
}

* {
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: top;
    width: 100vw;
    margin-bottom: 64px;
    background: var(--bg-color);

}

.logo {
    width: 10rem;
    padding: 1.5rem;
}

.right-col {
    width: 50vw;
    height: 100vh;
    padding: 5rem 3.5rem;
}

h1,
label,
button,
.description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

form {
    width: 31.25rem;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
}

textarea,
select,
label {
    width: 40vw;
    display: block;
}

p,
input,
select,
textarea {
    font-family: 'Helvetica Neue', sans-serif;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: var(--primary-color) !important;
}

input,
textarea,
select {
    color: var(--primary-color);
    font-weight: 500;
    background: var(--bg-color);
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    outline: none;
}

textarea {
    resize: none;
}

button {
    text-transform: uppercase;
    font-weight: 300;
    background: var(--bg-color);
    color: var(--primary-color);
    width: 12rem;
    height: 3.25rem;
    border: 2px solid var(--primary-color);
    outline: none;
    cursor: pointer;
}

button:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

input:hover,
textarea:hover {
    opacity: 0.5;
}

button:active {
    opacity: 0.8;
}


label {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.625rem;
}

input::placeholder,
textarea::placeholder {
    color: var(--primary-color) !important;
}

@media only screen and (max-width: 950px) {
    .logo {
        width: 8rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    p {
        font-size: 0.7rem;
    }

    input,
    textarea,
    select,
    button {
        font-size: 0.65rem;
    }

    .description {
        font-size: 0.3rem;
        margin-left: 0.4rem;
    }

    button {
        width: 7rem;
    }


}



.form-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.input-custom-style {
    cursor: pointer;
    margin-bottom: 24px;
    width: 50vw !important;
    text-align: start;

}


@media only screen and (max-width: 767px) {
    .input-custom-style {
        cursor: pointer;
        margin-bottom: 24px;
        width: 75vw !important;
        text-align: start;

    }
}


@media only screen and (min-width: 768px) {

    .form-container {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .input-custom-style {
        cursor: pointer;
        margin-bottom: 24px;
        width: 50vw !important;
        text-align: start;

    }
}

@media only screen and (min-width: 992px) {
    .form-container {
        width: 75%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }

    .input-custom-style {
        cursor: pointer;
        margin-bottom: 24px;
        width: 75vw !important;
        text-align: start;
    }
}

@media only screen and (min-width: 1200px) {

    .form-container {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .input-custom-style {
        cursor: pointer;
        margin-bottom: 24px;
        width: 50vw !important;
        text-align: start;

    }
}