-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (75 loc) · 1.18 KB
/
style.css
File metadata and controls
88 lines (75 loc) · 1.18 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
*{
padding: 0;
margin: 0;
}
.body{
background:gray;
background-size:cover;
align-items:center;
justify-content:center;
display: flex;
}
}
.contaior
{
position: relative;
margin-top:100px;
width:450px;
height: auto;
background: #dedede;
border-radius: 5px;
}
.lable1{
padding: 20px 130px;
font-weight: bold;
color:130f40;
}
.login_form{
padding:20px 50px;
}
.login_form .font{
font-size: 18px;
color: 130f40;
margin: 5px 0;
}
.login_form input{
height: 40px;
width: 350px;
padding: 0 5px;
outline: none;
border: 1px solid silver;
}
.login_form .font2
{
margin-top: 30px;
}
.login_form button{
margin: 45px 0 30px 0 ;
height: 45px;
width: 350px;
font-size: 20px;
color: white;
outline: none;
cursor: pointer;
font-weight: bold;
background: gray;
border-radius: 3px;
border: 1px solid #181b2e;
transition: .5s;
}
.login_form button:hover
{
background:#11121d;
}
.login_form #email_error,.login_form #pass_error
{
margin-top: 5px;
width: 350px;
font-size: 18px;
color: red;
background: rgba(102, 87, 87, 0.1);
text-align: center;
padding: 5px 8px;
border-radius: 3px;
border:1px solid #Ef9A9A;
}