@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --var-FontStyledMain: "Poppins", sans-serif;

    --var-ColorBackground: #F9F6EF;
    --var-ColorDestaque: #FFC626;
    --var-ColorTerciario: #2a7c11;
    --var-ColorCardSchedule: #A5C8FF;
    --var-ColorTextBase: #161616;
    --var-ColorNeutro: #8C8C8C;
    --var-ColorNeutroClear: #cccccc;
}

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

    -webkit-tap-highlight-color: transparent;
}

body{
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
}

.contain-image{
    background-image: url("img/pexels-pavel-danilyuk-7518739.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    border-bottom-right-radius: 50%;
    opacity: 0.1;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.041);
    width: 100%;
    max-width: 900px;
    height: max-content;
    padding: 50px;
    border-radius: 20px;
    gap: 40px
}

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

main header a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--var-ColorTextBase);
    font-family: var(--var-FontStyledMain);
    font-weight: 600;
    font-size: 15pt;
}
main header img{
    height: 30px;
    width: 30px;
}

.containerTitle{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.containerTitle h1{
    text-align: center;
    font-family: var(--var-FontStyledMain);
    font-size: 20pt;
    font-weight: 600;
    color: var(--var-ColorTextBase);
}
.containerTitle p{
    text-align: center;
    font-family: var(--var-FontStyledMain);
    font-size: 12pt;
    font-weight: 500;
    color: var(--var-ColorNeutro)
}

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

.CTA-auth{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.CTA-auth a{
    text-decoration: none;
    font-family: var(--var-FontStyledMain);
    font-size: 12pt;
    font-weight: 500;
    color: var(--var-ColorTextBase);
    height: 50px;
    width: 150px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.CTA-auth a:nth-child(1){
    background-color: var(--var-ColorDestaque);
}
.CTA-auth a:nth-child(2){
    background-color: white;
    border: 1px solid gray;
}

.container-CTA span{
    font-family: var(--var-FontStyledMain);
    font-size: 12pt;
    font-weight: 400;
    color: var(--var-ColorNeutro);
}

.accessDashboard{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none ;
    font-family: var(--var-FontStyledMain);
    font-size: 12pt;
    font-weight: 500;
    color: var(--var-ColorNeutro);
    cursor: pointer;
}

.accessDashboard img{
    height: 15px;
    width: 13px;
    object-fit: cover;
    transition: 0.2s;
}

.accessDashboard:hover{
    img{
        transform: translateX(10px)
    }
}

@media (max-width: 920px) {
    main{
        width: 90%;
        height: max-content;
        padding: 40px;
    }
}

@media (max-width: 440px) {
    main{
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    .CTA-auth a{
        height: 50px;
        width: 130px;
    }
}