211 lines
2.6 KiB
CSS
211 lines
2.6 KiB
CSS
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
|
|
.fundo {
|
|
|
|
|
|
background-image: url('./Acessts_SC/Prancheta\ 5.jpg');
|
|
background-size: Cover;
|
|
|
|
}
|
|
|
|
|
|
.centralizar {
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: fontealpha;
|
|
src: url(./Acessts_SC/zekton\ rg.otf);
|
|
}
|
|
|
|
|
|
|
|
.Bloco {
|
|
|
|
box-shadow: 0 0 10px black;
|
|
padding: 30px 45px;
|
|
border-radius: 20px;
|
|
width: 750px;
|
|
height: 600px;
|
|
border: 3px solid rgb(255, 255, 255);
|
|
background-color: rgb(255, 255, 255);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
align-items: center;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login_central {
|
|
|
|
|
|
align-items: center;
|
|
text-align: center;
|
|
color: rgb(0, 0, 0);
|
|
font-family: fontealpha;
|
|
font-size: 20px;
|
|
padding: 5px 0px 10px 0px;
|
|
|
|
}
|
|
|
|
|
|
.Login {
|
|
|
|
align-items: center;
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
.Login_label {
|
|
|
|
display: inline-block;
|
|
margin: 5px 5px 0px 0px;
|
|
font-size: 20px;
|
|
font-family: fontealpha;
|
|
padding: 10px 10px 10px 0px;
|
|
color: rgb(0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
.Login_input {
|
|
|
|
width: 100%;
|
|
height: 50px;
|
|
padding: 20px 10px 20px 20px;
|
|
font-size: 16px;
|
|
color: black;
|
|
margin: 0px 0;
|
|
border: none;
|
|
outline: none;
|
|
border: 3px solid rgb(0, 0, 0);
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
.Login_input input {
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
.Login_input:hover {
|
|
|
|
border: 4px solid rgb(30, 121, 132);
|
|
|
|
}
|
|
|
|
|
|
|
|
.Login input::placeholder {
|
|
|
|
color: rgb(0, 0, 0);
|
|
font-family: fontealpha;
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
.Senha {
|
|
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.Senha_label {
|
|
|
|
display: inline-block;
|
|
margin: 5px 20px 0px 0px;
|
|
font-size: 20px;
|
|
font-family: fontealpha;
|
|
padding: 10px 10px 10px 1px;
|
|
color: rgb(0, 0, 0);
|
|
padding: 10px 20px 10px 0px;
|
|
|
|
}
|
|
|
|
.Senha_input {
|
|
|
|
width: 100%;
|
|
height: 50px;
|
|
padding: 20px 10px 20px 20px;
|
|
font-size: 16px;
|
|
color: black;
|
|
margin: 0px 0;
|
|
border: none;
|
|
outline: none;
|
|
border: 3px solid rgb(0, 0, 0);
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
.Senha_input input {
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
.Senha_input:hover {
|
|
|
|
border: 4px solid rgb(30, 121, 132);
|
|
|
|
}
|
|
|
|
.Senha input::placeholder {
|
|
|
|
color: rgb(0, 0, 0);
|
|
font-family: fontealpha;
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
.botao {
|
|
|
|
margin-top: 40px;
|
|
width: 100%;
|
|
height: 50px;
|
|
border-radius: 20px;
|
|
background-color: rgb(28, 173, 180);
|
|
font-family: fontealpha;
|
|
font-size: 20px;
|
|
color: rgb(0, 0, 0);
|
|
border: none;
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.botao:hover {
|
|
|
|
background-color: rgb(30, 121, 132);
|
|
color: white;
|
|
|
|
} |