@font-face {
    font-family: "Montserrat";
    src: url("../../../assets/fonts/Montserrat-VariableFont_wght.ttf");
}
:root{
    --pink: rgb(247, 85, 93);
    --borda: rgba(30, 31, 36, 0.2);
    --gray: rgb(122, 122, 122);
    --title: rgb(30, 31, 36);
}
body{
    margin: 0px;
    width: 100%;
    height: 100%;
}
.contentAccess{
    width: 100%;
    min-height: 100%;
    background-image: url("../img/acesso/background1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ff545d;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow-y: auto;
}
.contentAccess::-webkit-scrollbar{
    width: 8px;
}
.contentAccess::-webkit-scrollbar-track{
    background-color: transparent;
}
.contentAccess::-webkit-scrollbar-thumb{
    background-color: var(--pink);
}
.leftAccess{
    width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 16px;
}
.logo img{
    width: 400px;
    height: 200px;
    object-fit: contain;
}
.titleLeftAccess{
    font-size: 23px;
    color: white;
    font-weight: 700;
    margin-top: 16px;
    text-align: center;
}
.textLeftAccess{
    margin-top: 12px;
    color: white;
    font-size: 16px;
    text-align: center;
}
.contentInfluencers{
    margin-top: 38px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titleContentInfluencers{
    font-size: 20px;
    font-weight: 600;
    color: var(--title);
}
.rowInfluencers{
    margin-top: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.colInfluencer{
    text-decoration: none;
    width: 170px;
    height: 158px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    margin-right: 12px;
}
.imgInfluencer img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 100%;
}
.nameInfluencer{
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--title);
}
.followersInfluencer{
    margin-top: 4px;
    font-size: 14px;
    color: var(--gray);
    transition: color 0.4s;
}
.colInfluencer:hover .followersInfluencer{
    color: var(--pink);
}

.rightAccess{
    margin-left: 20px;
}
.containerForm{
    width: 570px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgb(223, 223, 223);
}
.titleForm{
    width: 85%;
    margin-top: 58px;
    font-size: 23px;
    font-weight: 700;
    color: var(--title);
}
.textForm{
    padding-top: 28px;
    width: 60%;
    margin-top: 8px;
    color: var(--gray);
    font-size: 20px;
    text-align: center;
}
.form{
    margin-top: 48px;
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inputForm{
    margin-top: 4px;
    margin-bottom: 4px;
    width: 100%;
}
.nameInput{
    font-size: 16px;
    color: var(--title);
    font-weight: 600;
}
.inputForm input{
    margin-top: 12px;
    width: 100%;
    height: 44px;
    background-color: rgba(232, 240, 254, 0.514);
    border: 1px solid rgba(224, 224, 224, 0.5);
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    background-color: rgba(232, 240, 254, 0.514);
    -webkit-background-clip: text;
    -webkit-text-fill-color: black;
    transition: background-color 5000s ease-in-out;
}
.inputForm input:focus{
    outline: none;
    border: 1px solid var(--pink);
}
.inputForm select{
    margin-top: 12px;
    width: 100%;
    height: 44px;
    background-color: rgba(232, 240, 254, 0.514);
    border: 1px solid rgba(224, 224, 224, 0.5);
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px;
}
.inputForm select:focus{
    outline: none;
}
.alertForm{
    margin-left: 12px;
    margin-top: 4px;
    font-size: 14px;
    color: red;
    display: none;
}
.rowR{
    margin-top: 18px;
    display: flex;
    align-items: center;
    width: 100%;
}
.contCheck{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: var(--gray);
}
.contCheck input{
    margin-right: 8px;
    width: 16px;
    height: 16px;
}
.linkR{
    margin-left: auto;
    font-size: 16px;
}
.linkR a{
    text-decoration: none;
    color: var(--pink);
    font-weight: 600;
}
.btnForm{
    margin-top: 24px;
    width: 100%;
}
.btnForm button{
    width: 100%;
    height: 42px;
    background-color: var(--pink);
    color: white;
    font-weight: 600;
    font-size: 18px;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
}
.btnForm button:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}
.linkC{
    margin-top: 24px;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 58px;
}
.linkC a{
    text-decoration: none;
    color: var(--pink);
}

@media screen and (max-width: 980px){
    .contentAccess{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 58px;
    }
    .leftAccess{
        width: 840px;
    }
    .logo img{
        width: 680px;
        height: 370px;
    }
    .titleLeftAccess{
        font-size: 42px;
    }
    .textLeftAccess{
        font-size: 28px;
    }
    .contentInfluencers{
        display: none;
    }

    .rightAccess{
        margin-top: 38px;
        margin-bottom: 58px;
    }
    .containerForm{
        width: 840px;
    }
    .titleForm{
        width: 90%;
        font-size: 38px;
    }
    .textForm{
        width: 90%;
        font-size: 28px;
    }
    .form{
        width: 90%;
    }
    .nameInput{
        font-size: 28px;
    }
    .inputForm input{
        height: 64px;
        font-size: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .inputForm select{
        height: 64px;
        font-size: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .inputForm input:focus{
        border: 2px solid var(--pink);
    }
    .contCheck{
        font-size: 28px;
    }
    .contCheck input{
        width: 28px;
        height: 28px;
        margin-right: 16px;
    }
    .linkR{
        font-size: 28px;
    }
    .btnForm{
        margin-top: 38px;
    }
    .btnForm button{
        height: 64px;
        font-size: 26px;
    }
    .linkC{
        font-size: 28px;
    }
}