-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
88 lines (72 loc) · 1.43 KB
/
Style.css
File metadata and controls
88 lines (72 loc) · 1.43 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
* {
margin: 0;
padding: 0;
font-family: Georgia, 'Times New Roman', Times, serif;
box-sizing: border-box;
}
body{
background-image: url(./background.webp);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: bisque;
}
.wrapper{
width: 420px;
position: relative;
background-color: aqua;
background: transparent;
border: 0;
color: rgb(98, 212, 67);
border-radius: 15px;
}
.wrapper h1{
display: flex;
justify-content: center;
}
.wrapper .input-box{
width: 99%;
height: 50%;
background-color: rgb(74, 76, 113);
border: none;
border: 2px solid rgb(212, 67, 67);
border-radius: 40px;
margin: 27px 2px;
background: transparent;
padding: 20px;
outline: none;
}
.input-box input{
width: 100%;
height: 100%;
}
.wrapper .btn{
display: grid;
border-radius: 30px;
font-size: medium;
width: 100%;
height: 50px;
align-items: center;
justify-content: center;
}
.input-box i {
position: absolute;
right: 24px;
transform: translateY(2px);
color: rgb(255, 178, 127);
}
.wrapper .forget-remmber{
display: flex;
justify-content: space-between;
}
.wrapper .register-link{
display: flex;
justify-content: space-between;
}
.wrapper .register-link a{
color: lightgreen;
}
.wrapper .forget-remmber a{
color: darkcyan;
}