@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap');

*{
    color: white;
    margin: 0; /* Remova margens padrão do corpo da página */
    padding: 0; /* Remova o preenchimento padrão do corpo da página */
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a{
    text-decoration: none;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 12.5%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.6); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar a {
    position: relative;
    font-size: 16px;
    color: #e4e4e4;
    font-weight: 500;
    margin-right: 30px;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #e4e4e4;
    border-radius: 5px;
    transform: translateY(10px);
    opacity: 0;
    transition: .5s;
}

.navbar a:hover::after {
    transform: translateY(0);
    opacity: 1;
}

.icon-bar {
    width: 150px;
    height: 45px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bar a {
    font-size: 25px;
    color: #e4e4e4;
    margin-right: 30px;
}

.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    /* height: 550px; */
    /* margin-top: 20px; */
    overflow: hidden;
}

.video-show {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* z-index: -1; */
}

.container .content{
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.683); 
    padding: 80px;
    color: #e4e4e4;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.text-sci h2{
    font-size: 40px;
}

.text-sci h2 span{
    font-size: 25px;
}

.text-sci p{
    font-size: 16px;
    margin: 20px 0;
}

.social-icons{
    font-size: 22px;
    color: #e4e4e4;
    margin-right: 10px;
    transition: .5s ease;
}

.container .logreg-box{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 40%);
    height: 100%;
}

.logreg-box .form-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.785); 
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #e4e4e4;
}

.form-box h2{
    font-size: 32px;
    text-align: center;
}

.form-box .input-group{
    display: flex;
    flex-direction: row;
    width: 400px;
    justify-content: space-between;
}

.form-box .input-group .input-box{
    width: 190px;
}

.form-box .input-box{
    position: relative;
    width: 400px;
    height: 50px;
    border-bottom:  2px solid #e4e4e4;
    margin: 15px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #e4e4e4;
    font-weight: 500;
    padding-right: 28px;
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 500;
    pointer-events: none;
    transition: .5s ease;
}

.input-box input:focus~label,
.input-box input:valid~label{
    top: -5px;
}

.input-box .icon{
    position: absolute;
    top: 13px;
    right: 0;
    font-size: 19px;
}

.remember-forgot{
    font-size: 14.5px;
    font-weight: 500;
    margin: -10px 0 10px;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input{
    accent-color: #e4e4e4;
    margin-right: 3px;
}

.btn{
    width: 100%;
    height: 45px;
    background-color: #e92420;
    color: #e4e4e4;
    outline: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}


.form-container {
    display: flex; /* Use flexbox para centralizar verticalmente e horizontalmente */
    justify-content: center;
    align-items: flex-start; /* Alinhe os itens ao topo */
    min-height: 100vh; /* Use min-height para garantir que o contêiner ocupe pelo menos a altura da janela de visualização */
    padding: 20px;
    box-sizing: border-box; /* Certifique-se de que o preenchimento não aumente o tamanho total do contêiner */
}

.form-wrapper {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 5px;
    width: 100%; /* Defina a largura para 100% para ocupar todo o espaço disponível no contêiner pai */
    max-width: 640px; /* Defina uma largura máxima para evitar que o formulário fique muito largo */
}

label {
    font-weight: bold;
}

@media (max-width: 843px) {

    .header{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .container .logreg-box{
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
    
}

@media (max-width: 487px) {
    .navbar a {
        position: relative;
        font-size: 13px;
        color: #e4e4e4;
        font-weight: 500;
        margin-right: 10px;
    }
    
}

@media (min-width: 347px) and (max-width: 413px){

    .navbar a {
        position: relative;
        font-size: 10px;
        color: #e4e4e4;
        font-weight: 500;
        margin-right: 4px;
    }

    .icon-bar {
        width: 100px;
        height: 45px;
        background: transparent;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .icon-bar a {
        font-size: 18px;
        color: #e4e4e4;
        margin-right: 20px;
    }

    .form-box .input-box{
        position: relative;
        width: 357px;
        height: 50px;
        border-bottom:  2px solid #e4e4e4;
        margin: 15px 0;
    }
    
    .form-box .input-group{
        display: flex;
        flex-direction: row;
        width: 357px;
        justify-content: space-between;
    }

    .form-box .input-group .input-box{
        width: 170px;
    }

}