93 lines
1.9 KiB
CSS
93 lines
1.9 KiB
CSS
@import url('https://fonts.googleapis.com/css?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
|
|
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Poppins', sans-serif,sigma_tipografia;
|
|
}
|
|
body{
|
|
/*background: #084C6D;*/
|
|
display: flex;
|
|
justify-content:center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background: #23242a;
|
|
}
|
|
@font-face {
|
|
font-family: sigma_tipografia;
|
|
src: url(../tipografias/sigma_font.ttf) format('truetype'), url(../tipografias/sigma_font.otf) format('truetype');
|
|
font-style: normal;
|
|
}
|
|
|
|
.login-page{
|
|
background-color: #084C6D;
|
|
}
|
|
.login-logo a, .register-logo a{
|
|
color: #b5daff
|
|
}
|
|
.nom_app{
|
|
font-family: sigma_tipografia;
|
|
}
|
|
.login-logo{
|
|
margin-top: 5px;
|
|
font-size:32px;
|
|
font-family: sigma_tipografia;
|
|
}
|
|
.login-box-msg{
|
|
font-family: 'SIGMA-FONT', sigma_font, sigma_tipografia;
|
|
}
|
|
|
|
.box{
|
|
position: relative;
|
|
width: 380px;
|
|
height: 420px;
|
|
background-color: #1c1c1c;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
.box::before{
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 370px;
|
|
height: 420px;
|
|
background: linear-gradient(0deg,transparent,#45f3ff,#45f3ff);
|
|
transform-origin: bottom right;
|
|
animation: animar 6s linear infinite;
|
|
}
|
|
.box::after{
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 370px;
|
|
height: 420px;
|
|
background: linear-gradient(0deg,transparent,#45f3ff,#45f3ff);
|
|
transform-origin: bottom right;
|
|
animation: animar 6s linear infinite;
|
|
animation-delay: -3s;
|
|
}
|
|
@keyframes animar{
|
|
0%{
|
|
transform: rotate(0deg);
|
|
}
|
|
100%{
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
.form-box {
|
|
position: absolute;
|
|
inset: 2px;
|
|
background: #28292d;
|
|
z-index: 10;
|
|
}
|
|
.login-box{
|
|
position: absolute;
|
|
inset: 2px;
|
|
background: #28292d;
|
|
z-index: 10;
|
|
width: 99%;
|
|
margin-top: 0rem;
|
|
border-radius: 8px;
|
|
} |