-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot_password.css
More file actions
91 lines (79 loc) · 1.58 KB
/
forgot_password.css
File metadata and controls
91 lines (79 loc) · 1.58 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
body{
background-image: url('https://www.shutterstock.com/image-vector/old-cinema-background-vector-illustration-260nw-770497021.jpg');
background-repeat: no-repeat;
background-size: cover;
margin: 0 ;
font-family: "Roboto";
}
#form{
width: 420px;
margin: 25vh auto 0 auto;
background:transparent;
border: 2px solid white;
backdrop-filter: blur(10px);
color: white;
border-radius: 25px;
padding: 25px 25px;
}
h1{
text-align: center;
color: rgb(84, 63, 222);
}
#form button{
background-color: darkslateblue;
color: white;
border: 2px solid darkslateblue;
border-radius: 25px;
padding:15px;
height: 100%;
font-size: 20px;
width: 100%;
height: 50px;
outline: none;
cursor: pointer;
text-align: center;
}
.input-group{
display: flex;
margin: 10px;
flex-direction: column;
width: 80%;
}
.input-group input{
width: 100%;
height:100%;
background: transparent;
border: none;
outline: none;
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 25px;
font-size: 16px;
color: white;
padding: 20px 20px 20px 20px;
margin: 10px;
}
.input-group input::placeholder{
color: white;
}
.error{
color: red;
font-size: 20px;
margin-top: 8px;
margin-left: 15px;
}
#message{
font-size: 20px;
padding-top: 10px;
}
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
}
.previous {
background-color: #191856;
color: rgb(157, 175, 238);
}
.round {
border-radius: 50%;
}