-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (72 loc) · 1.51 KB
/
style.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
body{
font-family:Verdana, Geneva, Tahoma, sans-serif;
background-color: rgb(115, 146, 148);
color: white;
min-height: 100vh;
display: flex;
margin:0;
justify-content: center;
align-items: center;
}
.container{
background-color: rgb(6, 57, 59);
padding: 30px;
border: 5px double rgb(0, 14, 19);
border-radius: 1rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
row-gap: 2rem;
}
.form{
display: grid;
grid-template-columns: auto auto;
row-gap: 2rem;
column-gap: 3rem;
justify-content: center;
align-items: center;
}
.btn{
grid-column: span 2;
background-color: transparent;
border: 2px solid white;
border-radius: 1rem;
color:white;
font-weight: bold;
padding: 10px 32px;
justify-content: center;
text-align: center;
text-decoration: none;
display: flex;
transition-duration: 0.4s;
cursor: pointer;
}
.btn:hover{
background-color: rgb(37, 79, 82);
color: white;
border-color: white;
}
.title{
margin: 0;
text-align: center;
}
label{
font-weight: bold;
}
#password{
background-color: white;
color: black;
border:2px solid rgb(0, 14, 19);
border-radius: 0.5rem;
height: 2rem;
width:300px;
padding: 10px 32px;
display: flex;
justify-content: center;
align-items: center;
word-break: break-all;
box-shadow: 10px 5px 80px 10px rgb(141, 138, 138);
letter-spacing: 4px;
font-size: 20px;
}