-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyled.css
More file actions
146 lines (122 loc) · 2.51 KB
/
styled.css
File metadata and controls
146 lines (122 loc) · 2.51 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
margin:0;
padding: 0;
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
background: #454C98;
.wrapper{
width: 400px;
background: #fff;
border-radius: 12px;
color: #333;
padding: 30px 30px 25px;
margin-top: 40px;
height:800px;
}
}
.wrapper h1{
font-size: 2rem;
text-align: center;
margin-bottom: 24px;
font-weight: 700;
color: #4e54c8;
}
.wrapper .input-box{
display: flex;
flex-direction: column;
gap: 18px;
margin-bottom: 18px;
}
.input-box .input-field{
position: relative;#7C7FA3
width:100%;
height: 48px;
background: #f3f3f3;
border-radius: 6px;
display: flex;
align-items: center;
}
.input-box .input-field input{
width: 100%;
height: 100%;
background: transparent;
border: none; /* Removes underline/border */
outline: none;
font-size: 16px;
color: #333;
border-radius: 6px;
padding: 0 15px 0 40px;
}
.input-box .input-field input::placeholder{
color: #888;
}
.input-box .input-field i{
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
color: #4e54c8;
}
.wrapper label{
display: block;
font-size: 14px;
margin: 10px 0 18px;
color: #555;
}
.wrapper label input{
accent-color: #4e54c8;
margin-right: 7px;
}
.wrapper .btn{
width: 100%;
height: 45px;
background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
border: none;
outline: none;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(31, 38, 135, 0.1);
cursor: pointer;
font-size: 16px;
color: #fff;
font-weight: 600;
transition: background 0.2s;
}
.wrapper .btn:hover {
background: linear-gradient(135deg, #8f94fb 0%, #4e54c8 100%);
}
.footer{
font-size: 15px;
top: 0;
}
.footer p{
color:red;
}
@media screen and (max-width:650px) {
}
.footer{
padding-top: 60px;
padding-bottom: 30px;
}
/* Default styles */
body {
font-size: 16px;
}
/* Styles for screens smaller than 768px (e.g., mobile devices) */
@media (max-width: 768px) {
body {
font-size: 14px;
}
}
/* Styles for screens larger than 1200px (e.g., desktops) */
@media (min-width: 1200px) {
body {
font-size: 18px;
}
}