:root {
    --color1: #4036A9;
    --color2: #111729;
    --color3: #CDD5E0;
    --color4: #F8FAFC;
    --color5: #FFFFFF;
    --color6: #FFFFFF33;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Be Vietnam Pro', sans-serif;
}

body {
    width: 100%;
    height: auto;
}

.main {
    width: 100%;
    height: auto;
    background-image: url(media/icons/bg-image.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 80px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.header {
    width: 100%;
    height: auto;
}

.logo_icon {
    width: auto;
    height: auto;
    object-fit: contain;
}

.title {
    text-align: center;
    width: 600px;
    font-size: 4rem;
    color: var(--color5);
}

.desc {
    width: 720px;
    margin-top: 10px;
    text-align: center;
    font-size: 2rem;
    color: var(--color5);
}

.form {
    width: 100%;
    height: auto;
    margin-top: 40px;
    background: var(--color6);
    border-radius: 16px;
    padding: 20px 0;

    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.form_item {
    width: 44%;
    height: auto;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.form_item:nth-child(5) {
    width: 94%;
    height: 250px;
}

.form_item:last-child {
    width: 94%;
}

.label {
    font-size: 0.875rem;
    color: var(--color5);
}

.input {
    width: 100%;
    height: 100%;
    color: var(--color4);
    font-size: 1rem;
    padding: 20px;
    color: var(--color3);
    border-radius: 12px;
    outline: none;
    border: none;
    position: relative;
    font-weight: bold;
}

.select_container {
    width: 100%;
    height: 100%;
    position: relative;
}

.select_container::after {
    content: url(media/icons/Expand_down.svg);
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0, -50%);
}

.select {
    color: var(--color2);
    cursor: pointer;
}

.textarea {
    color: var(--color2);
    resize: none;
}

.submit {
    color: var(--color1);
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {

    .main {
        padding: 20px 40px;
    }   

    .title {
        width: 100%;
        font-size: 3.5rem;
    }

    .desc {
        width: 80%;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 640px) {

    .main {
        padding: 20px;
    }

    .title {
        font-size: 3rem;
    }

    .desc {
        font-size: 1rem;
    }

    .form_item {
        width: 90%;
    }
}