-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
94 lines (81 loc) · 1.63 KB
/
index.css
File metadata and controls
94 lines (81 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
html{
height: 100%;
}
body{
background-color: #16161a;
height: 100%;
font-family: "Quicksand";
font-weight: 600;
letter-spacing: 0.6px;
font-size: 16px;
}
.container{
display: flex;
justify-content: center;
align-items: center;
width: 100%;;
height: 100%;
}
.recuadro-login{
width: 60%;
background:#94a1b2 ;
height: 50%;
border-radius: 20px;
display: flex;
box-shadow: 8px 13px 29px -2px rgba(0,0,0,0.78);
-webkit-box-shadow: 8px 13px 29px -2px rgba(0,0,0,0.78);
-moz-box-shadow: 8px 13px 29px -2px rgba(0,0,0,0.78);
}
.formlogin{
width: 50%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.container-inputs{
margin: 5px 0px;
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
}
form{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
label{
color: white;
margin-bottom: 5px;
width: 70%;
}
input{
border-radius: 20px;
width: 70%;
height: 40px;
border: none;
padding: 0px 20px;
}
button{
border-radius: 20px;
margin-top: 20px;
width: 337px;
background-color: #7f5af0;
border: none;
font-family: "Quicksand";
color: white;
height: 40px;
}
.imgform {
width: 50%;
background-image:url(https://i.ibb.co/Q99SP6b/1.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}