-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
122 lines (107 loc) · 2.21 KB
/
Copy pathsignup.css
File metadata and controls
122 lines (107 loc) · 2.21 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Outfit', sans-serif;
}
body {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 40px 20px;
}
main {
width: 100%;
max-width: 500px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(15px);
border-radius: 30px;
padding: 40px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.5);
}
form {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
img {
margin-bottom: 30px;
max-width: 180px;
}
div {
display: flex;
gap: 15px;
width: 100%;
margin-bottom: 20px;
}
div input {
margin-bottom: 0px !important;
}
input {
width: 100%;
height: 48px;
padding: 0 20px;
margin-bottom: 20px;
border-radius: 12px;
border: 1px solid #e2e8f0;
background: white;
font-size: 15px;
color: #1e293b;
transition: all 0.3s ease;
}
input:focus {
outline: none;
border-color: #1d9bf0;
box-shadow: 0 0 0 4px rgba(29, 155, 240, 0.1);
}
p {
font-weight: 600;
color: #002A5C;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 15px;
width: 100%;
text-align: left;
border-left: 3px solid #1d9bf0;
padding-left: 10px;
}
button {
width: 100%;
height: 50px;
background: #002A5C;
color: white;
border: none;
border-radius: 14px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 10px;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 12px rgba(0, 42, 92, 0.2);
}
button:hover {
background: #1d9bf0;
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(29, 155, 240, 0.3);
}
button:active {
transform: translateY(0);
}
/* Response for small screens */
@media (max-width: 480px) {
div {
flex-direction: column;
gap: 20px;
}
main {
padding: 30px 20px;
}
}