-
Notifications
You must be signed in to change notification settings - Fork 0
/
style3.css
77 lines (71 loc) · 1.22 KB
/
style3.css
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
*{
font-family: 'Roboto', sans-serif;
}
body{
background: #C0DBEA;
background-image: url(images/waves.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.wrapper{
width: 330px;
padding: 2rem 0 1rem 0;
margin: 50px auto;
background: #C0DBEA;
border-radius: 10px;
text-align: center;
box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}
h1{
font-size: 2rem;
color: #07001f;
}
p{
margin-bottom: 1.7rem;
}
form input{
width: 85%;
outline: none;
border: none;
background: #dfe9f5;
padding: 12px 14px;
margin-bottom: 10px;
border-radius: 10px;
}
.recover{
text-align: right;
font-size: 0.8rem;
margin: 0.2rem 1.7rem 0 0;
}
.recover a{
text-decoration: none;
color: #07001f;
}
button{
font-size: 1.1rem;
margin-top: 1rem;
padding: 8px 0;
border-radius: 5px;
outline: none;
border: none;
width: 85%;
background: rgb(71, 169, 255);
color: #fff;
cursor: pointer;
}
button:hover{
background: rgba(30, 54, 122, 0.767);
}
.or{
font-size: 0.8rem;
margin-top: 1.5rem;
}
.not-member{
font-size: 0.8rem;
margin-top: 1.4rem;
}
.not-member a{
color: tomato;
text-decoration: none;
}