@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
}
header{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.logo img {
    width: 100px; /* Altere conforme necessário */
    height: auto; /* Mantém a proporção da imagem */
}

.navigation a{
    position: relative;
    font-size: 1.1em;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}

.navigation a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}

.navigation a:hover::after{
    transform-origin: left;
    transform: scaleX(1);
}
body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/fundovazio.png) no-repeat;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.container {
    width: 65%;
    height: 65vh; 
    display: flex;
    box-shadow: 5px 5px 10px;
    background: transparent;
  
}

.wrapper{
    position: relative;
    width: 450px;
    height: 415px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: height .2s ease;
}

.wrapper .active {
    height: 520px;
}
.wrapper .form-box{
    position: absolute;
    width: 100%;
    padding: 75px;
}

.wrapper .form-box.Login{
    transition: transform .18s ease;
    transform: translateX(0);
}

.wrapper.active .form-box.Login {
    transition: none;
    transform: translateX(-700px);

}

.wrapper .form-box.Register {
    position: absolute;
    transition: none;
    transform: translateX(400px);
}

.wrapper.active .form-box.Register{
    transition: transform .18s ease;
    transform: translateX(0);
}

.form-box{
    margin: 1%;
    position: center;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 30px 40px;

}

.wrapper .form-box h1{

    font-size: 36px;
    text-align: center;
    color: #fff;
    margin: 20px;

}
   
.input-box{
    position: relative;
    width: 80;
    height: 50;
    margin: 15px 0;
    
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255,255, .2);
    border-radius: 40px;
    font-size: 16x;
    color: rgb(248, 248, 248);
    padding: 15px 40px 15px 15px;
    justify-content: space-between;
}

.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
}

.wrapper input::placeholder{
    color: #fff;
}

.wrapper .remember-forgot{

    display: contents;
    text-align: center;
    justify-content: space-between;
    font-size: 10.5px;
    margin: -15px 0 15px;
    color: #fff;
}
.remember-forgot label input {
    accent-color: #fff;
    margin: 3px;

}

.remember-forgot a {
    color: #fff;
    text-decoration: none;
}

.remember-forgot p {
    color: #fff;
    text-decoration: none;
}
.remember-forgot a:hover {
    text-decoration: underline;
    margin-right: 3px;
    color: #fff;

}

.wrapper .btn {
    width: 100%;
    height: 40px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;

}

.wrapper .register-link{
    font-size: 10.5px;
    text-align: center;
    justify-content: space-between;
    margin-top: 5px ;
    color: #fff;
}

.register-link h1 {
    margin-bottom: 30px;
}
.register-link a{
    
    text-decoration: none;
    font-weight: 600;
    color: #fff;
}

.register-link p a:hover{
    text-decoration: underline;
  }

.form-image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items:center;
    padding: 1,5rem;
}

.form-image img{
     width: 27.4rem;
}

.link-container {
    display: flex;
    flex-direction: column; /* Organiza os links em coluna */
    gap: 10px; /* Espaçamento entre os links */
}

.link-container a {
    display: flex; /* Alinha ícone e texto lado a lado */
    align-items: center; /* Centraliza verticalmente */
    text-decoration: none; /* Remove o sublinhado */
    color: #fff; /* Cor do texto */
    font-size: 14px; /* Tamanho do texto */
    margin: 2px 0; /* Margem entre os links */
}

.link-container ion-icon {
    margin-right: 8px; /* Espaço entre o ícone e o texto */
    font-size: 18px; /* Tamanho do ícone */
    color: #fff; /* Cor do ícone */
}


.login-register{
    font-size: 10.5px;
    text-align: center;
    justify-content: space-between;
    margin-top: 5px ;
    color: #fff;
}

.login-register a {
    color: #fff;
    text-decoration: none;
}

.login-register p {
    color: #fff;
    text-decoration: none;
}
.login-register a:hover {
    text-decoration: underline;
    margin-right: 3px;
    color: #fff;

}

/* Estilo para a logo no formulário */
.form-logo {
    display: block;
    margin: 0 auto 20px auto; /* Centraliza a logo e adiciona espaçamento inferior */
    max-width: 150px; /* Define um tamanho máximo para a logo */
    height: auto; /* Mantém as proporções da imagem */
}

.modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.show {
    display: flex; 
}

.modal-content {
    background: #fff;
    padding: 20px;
    width: 45%;
    max-width: 400px;
    border-radius: 20px;
    background-color: #64646483;
    backdrop-filter: blur(10px);
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
   
}

.modal-content form label {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #fff ;
}

.modal-content form input {
    width: 100%;
    padding: 6px;
    margin-top: 2px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 14px;
}

.modal-content button {
    width: 100%;
    padding: 10px;
    background-color: #1885df;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #1885df;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}


    