-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (86 loc) · 1.64 KB
/
style.css
File metadata and controls
100 lines (86 loc) · 1.64 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
95
96
97
98
*{
margin:0;
padding:0;
font-family:'Poppins',sans-serif;
box-sizing:border-box;
}
.container{
width:100%;
height:100vh;
background-image:linear-gradient(rgba(0,0,50,0.8),rgba(0,0,50,0.8)),url(/images/logo.webp);
background-position:center;
background-size:contain;
background-repeat: no-repeat;
position:relative;
}
.form-box{
width:90%;
max-width: 450px;
position:absolute;
top:20%;
left:35%;
background:rgba(255,255,255);
padding: 50px 60px 50px 50px;
text-align: center;
border-radius: 3px;
}
.form-box h1{
font-size: 30px;
font-family: Arial, Helvetica, sans-serif;
margin-bottom:30px;
color:rgb(214, 0, 28);
position:relative;
}
.input-field{
background:lightgrey;
margin:20px 0px;
display:flex;
align-items:center;
border-radius: 2px;
transition:max-height 0.3s;
overflow:hidden;
}
input{
width:100%;
background:transparent;
border:0;
outline:0;
border-radius: 3px;
padding:18px 15px;
}
.input-field i{
margin-left:15px;
}
form p{
text-align: left;
font-size: 12px;
margin-top: 20px;
}
form p a{
color:rgb(214, 0, 28);
}
.btn-field{
width:100%;
display:flex;
justify-content: space-between;
}
.btn-field button{
flex-basis:48%;
height: 40px;
background-color: rgb(214, 0, 28);
color:rgba(255,255,255);
border:0;
border-radius: 20px;
outline:0;
padding:10px;
cursor:pointer;
font-size: 14px;
transition: background 1s;
}
.input-group{
height:260px;
}
.btn-field button.disable{
background: lightgrey;
color:#555;
}