-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (63 loc) · 1.66 KB
/
styles.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background-color: #0075ff;
}
.container {
background-color: #ffffff;
width: 80vmin;
max-width: 37.5em;
padding: 3em 2.5em;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
border-radius: 0.62em;
box-shadow: 0 1.2em 2.5em rgba(0, 21, 44, 0.18);
}
h2 {
font-size: 1.8em;
color: #0075ff;
text-align: center;
font-weight: 600;
letter-spacing: 0.5px;
margin-bottom: 1.3em;
}
.wrapper {
display: flex;
justify-content: space-between;
gap: 1.8em;
}
label {
display: block;
margin-bottom: 0.5em;
font-weight: 500;
color: #050121;
}
input {
position: relative;
font-size: 1.1em;
width: 100%;
padding: 0.5em;
border-radius: 0.2em;
border: 1.5px solid #43405c;
color: #43405c;
outline: none;
}
input:focus {
border-color: #0075ff;
}
#error-msg {
text-align: center;
margin-top: 1.25em;
color: #ff4362;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}