html {
    font-size: 16px;
}

body {
    --max-width: 577px;

    font-family: Inter, Arial, sans-serif;

    display: flex;

    margin: 0;
    padding: 0;


    min-height: 100vh;

    color: #ffffff;
    background: #1c1f53;

}

* {
    box-sizing: border-box;
    
}
.column.right {
    flex: 0 0 auto;
    padding: calc(10px + 7vmin) 2em;
    width: 45vw;
    height: 100%;

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

}

.column.left {
    flex: 1 1 100%;

    background: url(../img/header.webp) no-repeat top center;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 3em 2em;

}

h2 {
    font-family: Paris2024;
    /*margin: 10px 0;*/
    font-size: 2em;

    width: 100%;

    max-width: var(--max-width);
    margin: 1em;
}

.yellow {
    color: #edfb3b;
}

.blue {
    color: #4bfdf1;
}


h3 {
    font-family: BigNoodleTitling;
    font-weight: normal;
    margin: 0;
    font-size: 2.5em;
    width: 100%;
    max-width: var(--max-width);
}

.info {
    font-family: BigNoodleTitling;
    /*font-family: Paris2024;*/
    font-weight: normal;
    font-size: 2.5em;
    width: 100%;

    max-width: var(--max-width);
    margin-top: 1em;
    margin-bottom: 1em;
}

.header-text {
    color: #fff;
    /*padding: 1rem;*/
    text-align: center;
}


h1 {
    font-family: Paris2024;
    font-size: clamp(20px, calc(10px + 7vw), 7em);
    line-height: 0.9em;
    margin: 0;
}


.date {
    font-family: Paris2024;
    margin: 1.5rem auto 0;
    /*font-size: 2.2em;*/
    font-size: clamp(10px, calc(10px + 1.2vw), 2.2em);

    background: linear-gradient(to right, #eefb3b, #4dfdf0);
    width: fit-content;
    border-radius: 1.5rem;
    height: 1.5em;
    color: #1c1f54;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
    box-sizing: border-box;
    line-height: 1em;
    text-transform: uppercase;
}

/* form */

form {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    justify-content: flex-start;
    gap: 1em;
}

form .inputs {
    /*background-color: rgba(17, 25, 40, 0.35);*/
    /*padding: 2em;*/
    /*-webkit-border-radius: 1em;*/
    /*-moz-border-radius: 1em;*/
    /*border-radius: 1em;*/

    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

form .input {
    display: flex;
    gap: 1rem;
    width: 100%;
    align-items: center;
    font-weight: 300;
}

form label {

    font-family: 'Roboto', sans-serif;
    flex: 0 0 auto;
    font-size: 0.9em;
    color: rgb(161, 162, 184);
    min-width: 120px;
}
form label[required]::after{
   content: " *";
    display: inline-block;
    color: #ffffff;
    margin-left: 0.5em;
}

form input {
    font-family: Inter, sans-serif;
    flex: 1 1 40%;
    width: 100%;
    height: 2.5rem;
    border: none;
    /* margin: 5px 0; */
    font-weight: 300;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
    /*background-color: transparent;*/
    border-radius: 5px;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.125);*/
    padding: 0.1rem 0.5rem;
    color: #ffff;
}
form input + input{
    font-family: Inter, sans-serif;
    flex: 1 1 60%;
    width: 100%;
    height: 2.5rem;
    border: none;
    /* margin: 5px 0; */
    font-weight: 300;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
    /*background-color: transparent;*/
    border-radius: 5px;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.125);*/
    padding: 0.1rem 0.5rem;
    color: #ffff;
}

p {
    font-size: 0.85em;
    font-weight: 300;
    text-align: right;
    width: 100%;
    max-width: var(--max-width);
    /*text-align: center;*/
    margin: 0;
}

.column.right h1 {
    margin: 20px auto;
}

.styled-button {
    font-family: Paris2024;
    margin: 10px auto;
    background-color: #42c2c7;
    background: linear-gradient(31deg, rgba(66, 194, 199, 1) 0%, rgba(35, 159, 122, 1) 99%);
    border: none;
    color: white;
    padding: 0.8em 1.7em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition-duration: all 0.4s;
    font-size: 1.2em;
}

.styled-button:hover {
    background-color: #239f7a;
    /*transform: translateY(-1px);*/
    background: linear-gradient(31deg, rgb(222 55 34) 0%, rgb(244 155 14) 99%);

}

.styled-button:active {
    background-color: #239f7a;
    background: linear-gradient(31deg, rgb(222 55 34) 0%, rgb(244 155 14) 99%);
    /*transform: translateY(2px);*/
}


@media screen and (max-width: 1500px) {
    .column {
        font-size: 14px;
    }


}
@media screen and (max-width: 1000px) {
    body {
        flex-direction: column;
    }

    .column.left{
        background: url(../img/header-xs.webp) no-repeat top left, radial-gradient(circle at 50% 0 , #873b72, #1c1f52);
        background-size: 100% auto, contain;
        padding-top: 18vw;
        order: 0;
        /*font-size: 12px;*/
        /*font-size: 16px;*/
        padding-bottom: 2em;

    }

    .column.right{
        order: 1;

        width: 100%;

        /*font-size: 12px;*/
        padding: 2em;
    }

    h1 {

        font-size: clamp(20px, calc(10px + 10vw), 7em);
    }

    .date {
        font-size: clamp(10px, calc(10px + 2.2vw), 2.2em);
    }


    .info {

        margin-top: 0.5em;
    }

}


@media screen and (max-width: 860px) {
    .column {
        font-size: 12px;
    }

    form .input {
        flex-wrap: wrap;
    }

    form label {
        min-width: 85px;
        flex: 0 0 100%;
    }

    form input {
        flex: 1 0 40%;
    }

    form input + input {
        flex: 0 1 calc(60% - 1rem);
    }
}