@font-face {
    font-family: "AdidasFG";
    src: url("https://marvy-s3.marvy-uat.site/adiclub/fonts/adidasFG-CompressedBold.otf") format("opentype");
}

@font-face {
    font-family: "SFPro";
    src: url("https://marvy-s3.marvy-uat.site/adiclub/fonts/SF-Pro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "SFPro";
}

.page-information {
    min-height: 100dvh;
    background: url(../img/background-adidas.png) no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0 25px;
}

.logo {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo img {
    width: 200px;
}

.form-container {
    max-width: 350px;
    background: rgb(2 33 19 / 58%);
    background-size: cover;
    border-radius: 10px;
    padding: 30px 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border-radius: 14px;
    z-index: 0;
}

.form-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.2px;
    background: linear-gradient(to right, #1b4935, #ffffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.form-group label span {
    font-size: 12px;
}

.form-group .form-control {
    background: #ffffffb5;
    padding: 12px 15px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
}

.btn-next {
    font-family: "AdidasFG";
    background-color: #d4795f;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px;
    border-radius: 10px;
    padding: 10px 40px;
    box-shadow: 0 2px 0 #000000;
    cursor: pointer;
}

.error-message {
    color: #ff0000;
    font-size: 12px;
}

#errorFullPage {
    display: none;
    height: 100vh;
    text-align: center;
    padding: 50px 20px;
    justify-self: center;
}

#errorFullPage .error-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#errorFullPage h2 {
    font-size: 20px;
    color: #e74c3c;
    margin-bottom: 10px;
}

#errorFullPage p {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 5px;
}

@media only screen and (max-width: 320px) {
    .form-container {
        padding: 12px;
        width: 100%;
        gap: 10px;
    }

    .logo img {
        width: 130px;
    }

    .form-group .form-control {
        padding: 5px 10px;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-group label span {
        font-size: 9px;
    }

    .btn-next {
        font-size: 28px;
        padding: 8px 35px;
    }
}

@media only screen and (min-width: 321px) and (max-width: 375px) {
    .logo img {
        width: 150px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group label span {
        font-size: 10px;
    }

    .form-container {
        padding: 20px 15px;
        width: 100%;
    }

    .btn-next {
        font-size: 28px;
        padding: 8px 35px;
    }
}

@media only screen and (min-width: 376px) and (max-width: 390px) {
    .form-container {
        padding: 25px 20px;
        width: 100%;
    }
}

@media only screen and (min-width: 391px) and (max-width: 412px) {
    .form-container {
        padding: 30px 25px;
        width: 100%;
    }
}

@media only screen and (min-width: 413px) and (max-width: 430px) {
    .form-container {
        padding: 30px 25px;
        width: 100%;
    }
}

@media only screen and (min-width: 431px) {
    .form-container {
        padding: 30px 25px;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .page-information {
        max-width: 450px;
        margin: 0 auto;
    }

    #errorFullPage {
        max-width: 450px;
        margin: 0 auto;
    }
}