* { margin: 0; padding: 0; box-sizing: border-box; } .fundo { background-image: url('../../Acessts/Imagens/21321.png'); background-size: cover; } .centralizar { display: flex; justify-content: center; align-items: center; align-content: center; min-height: 100vh; } @font-face { font-family: fonteTi; src: url(../Acessts/Fontes/zekton\ rg.otf); } @font-face { font-family: fonteTa; src: url(../Acessts/Fontes/MADE\ Evolve\ Sans\ Bold\ \(PERSONAL\ USE\).otf); } .invisivel { display: none; } .Bloco { box-shadow: 10px 10px 5px rgb(68, 68, 68); padding: 30px 45px; width: 30vw; height: 75vh; border: 3px solid rgb(0, 119, 255); background-color: rgb(255, 255, 255); backdrop-filter: blur(20px); z-index: 999; position: fixed; top: 10vh; left: 35vw; justify-content: center; /*Bottom e left são os elementos que vão organizar o ponto onde o painel vai parar, adicionar uma midia query para isso conseguira adapitar o painel para mais telas*/ animation: aparecer 1s ease; } .logo { align-items: center; text-align: center; } .logo img { width: 10vw; } .login_central { align-items: center; text-align: center; color: rgb(0, 119, 255); font-family: fonteTi; font-size: 1.5vw; padding: 0vw 1vh; margin-bottom: 4vh; } .Login, .Senha { display: flex; align-items: center; align-content: center; justify-content: center; width: 100%; gap: 1vw; margin-top: 2vh; } .Login_label, .Senha_label { width: 10%; display: flex; align-items: center; align-content: center; justify-content: center; } .Login img, .Senha img { width: 3.5vw; } .Login_input, .Senha_input { width: 90%; height: 1vh; padding: 2.5vh 2vw; margin: 0px 0; border: none; outline: none; font-size: 1vw; color: #0077ff; border: 2.5px solid #0077ff; transition: 1s ease; } .Login_input input, .Senha_input input { width: 100%; height: 100%; background: transparent; } .Login_input:hover, .Senha_input:hover { border: 2.5px solid rgb(30, 121, 132); transition: 1s ease; } .Login input::placeholder, .Senha input::placeholder { font-family: fonteTi; color: #696969; font-size: 1vw; } .select-menu { margin-top: 2vh; width: 100%; cursor: pointer; position: relative; } .select { border: 0.2vw solid #0077ff; width: 100%; height: 6vh; color: #0077ff; font-family: fonteTi; font-weight: 500; display: flex; align-items: center; justify-content: space-around; transition: ease 1s; } .select:hover { background-color: #0077ff; width: 100%; height: 6vh; color: #ffffff; font-family: fonteTi; font-weight: 500; display: flex; align-items: center; justify-content: space-around; transition: ease 1s; } .options-list { position: absolute; width: 100%; height: 0; background-color: rgba(139, 139, 139, 0.459); backdrop-filter: blur(20px); overflow-y: auto; transition: 1s ease; } .option { border-top: 0.2vh solid rgb(255, 255, 255); color: white; font-family: fonteTi; display: flex; align-items: center; justify-content: center; padding: 8px 0; font-weight: 500; font-size: 14px; transition: .3s ease-in-out; } .option:hover { background-color: #0077ff; } .options-list::-webkit-scrollbar { background-color: transparent; } .options-list::-webkit-scrollbar-thumb { background-color: #0077ff; width: 0.2vw; } .options-list.active { position: absolute; height: 20vh; } .botao { margin-top: 20px; width: 100%; height: 6vh; background-color: #0077ff; font-family: fonteTi; font-size: 1vw; color: rgb(255, 255, 255); border: none; outline: none; transition: 1s ease; } .botao:hover { background-color: rgb(30, 121, 132); color: white; transform: scale(0.9); transition: 1s ease; } /* Defina a animação de aparecimento */ @keyframes aparecer { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }