
* {
    margin: 0;
    padding: 0;
}

@import url("/fonts/fonts.css");

body {
    background-color: var(--bg-color);
    text-align: center;
    font-style: italic;
    font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
}


.wrapper {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    cursor: pointer;
}


:root {
    /*- ======================
            ---Colors--- 
    ========================== */

    --primary-color: #fe6501;
    --bg-color: #f5f1f1;
    --black-text-color: #000000;
    --white-text-color: #ffffff;
    --form-text-color: #807878;
    --checkbox-bg-bolor: #F2F4F5;
    --checkbox-label-color: #807878;
    --checkbox-letter-color: #525151;


    /*==============X==============X==============X==============*/

    /*- ======================
        ---FONTS WEIGHTS--- 
    ========================== */

    --f-weight-700: 700;
    --f-weight-500: 500;
    --f-weight-600: 600;

    /*- ======================
        ---FONTS SIZES--- 
    ========================== */

    --f-size-heading: 50px;
    --f-size-button: 24px;
    --f-size-text: 22px;

    /*- ======================
    ---LINE HEIGHTS--- 
    ========================== */

    --l-height-heading: 60px;
    --l-height-button: 50px;
   --l-height-text: 30px;

    /*==============X==============X==============X==============*/
}


/**
 *  SECTION
 *
 * ------------------------------------------------------------------------- */

.layout {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main {
    background-color: var(--white-text-color);
    padding: 80px 120px;
    border-radius: 30px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
}

.navigation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 9999;
}

.navigation-buttons button {
    padding: 10px !important;
    width: 60px;
    height: 60px;
    display: grid;
    place-content: center;;
}

.navigation-buttons svg {
    width: 30px;
    height: 30px;
    color: white;
}

.main .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.content #svg {
    background-color: #FFF0E6;
    border-radius: 100vw;
    width: 153px;
    height: 153px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content #svg svg {
    width: 100px;
    height: 100px;
}

.content h1 {
    font-size: var(--f-size-heading);
    line-height: var(--l-height-heading);
    font-weight: var(--f-weight-700);
    color: var(--black-text-color);
}

.content p {
    color: var(--form-text-color);
    font-size: var(--f-size-text);
    line-height: var(--l-height-text);
    font-weight: var(--f-weight-500);
}

.button button ,
.navigation-buttons button {
    font-size: var(--f-size-button);
    line-height: var(--l-height-text);
    font-weight: var(--f-weight-500);
    color: var(--white-text-color);
    background-color: var(--primary-color);
    padding: 15px 50px;
    border-radius: 20px;
    text-decoration: none;
    border: none;
    font-style: italic;
    transition: .3s;
}

.button button:hover,
.navigation-buttons button:hover {
    opacity: .8;
}

.checkbox-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 49px;
}

.form-container {
    display: flex;
    gap: 49px;
    align-items: center;
    flex-direction: column;
}

.dividing-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.hidden-checkbox {
    display: none;
}

.hidden-checkbox:checked ~ .custom {
    background-color: var(--primary-color) !important;
    color: white;
}

.hidden-checkbox:checked ~ .custom span {
    color: white;
}

.custom-label label {
    font-size: var(--f-size-text);
    line-height: var(--l-height-text);
    font-weight: var(--f-weight-600);
    color: var(--checkbox-label-color);
    background-color: var(--checkbox-bg-bolor);
 
    padding: 10px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.custom-label .letter {
    color: var(--checkbox-letter-color);
}

.custom-label input {
    background: transparent;
    border: 0;
    font-size: var(--f-size-text);
    text-align: center;
    padding: 10px 0;
}

.custom-label input:focus {
    outline: none;
}

.submit-button {
    font-size: 36px;
    line-height: 60px;
    font-weight: 600;
    color: white;
    background-color: #fe6501;
    padding: 15px 50px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

/*==============X==============X==============X==============*/

@media screen and (max-width: 1680px) {
    :root {
        --f-size-heading: 50px;
        --f-size-text: 24px;
        --line-height-heading: 60px;
        --line-height-text: 40px;
    }

    .main {
        padding: 40px 80px;
    }
}


@media screen and (max-width: 1024px) {
    :root {
        --f-size-heading: 40px;
        --f-size-text: 22px;
        --l-height-heading: 50px;
        --l-height-text: 40px;
    }
}

@media screen and (max-width: 768px) {
    .wrapper {
        max-width: 90%;
        margin: 0 auto;
    }

    .main {
       padding: 50px 50px;
    }

    .content #svg {
        width: 120px;
        height: 120px;
    }
    
    .content svg {
        width: 80px;
        height: 80px;
    }

    .custom-label {
        width: 100%;
    }

    /* .main {
        max-width: max-content;
    } */
}

@media screen and (max-width: 425px) {
    :root {
        --f-size-heading: 26px;
        --f-size-text: 16px;
        --l-height-heading: 26px;
        --l-height-text: 20px;
    }

    .wrapper {
        padding: 20px;
    }

    .main {
        padding: 40px 30px;
        border-radius: 10px;
    }

    .content {
        gap: 20px !important;
    }

    .content #svg {
        width: 80px;
        height: 80px;
    }

    .content #svg svg {
        width: 50px;
        height: 50px;
    }

    .custom-label {
        width: 100%;
    }

    .navigation-buttons {
        top: 25px;
    }

    .navigation-buttons button {
        padding: 5px !important;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .navigation-buttons svg {
        width: 20px;
        height: 20px;
    }
}


.hidden {
    display: none !important;
}

.fp-watermark {
    display: none !important;
}