-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
79 lines (69 loc) · 1.6 KB
/
signup.css
File metadata and controls
79 lines (69 loc) · 1.6 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-image: url(https://tse4.mm.bing.net/th?id=OIP.14ctQrKGsiUNqh84YC0uaAHaEK&pid=Api&P=0&h=180);
background-size: cover;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column; /* Adjusting to column layout */
align-items: center; /* Centering horizontally */
max-width: 400px; /* Reducing max-width */
width: 100%;
padding: 20px;
gap: 20px; /* Adjusting gap */
}
.form {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
width: 100%; /* Making the form width 100% */
}
form {
margin-top: 20px;
}
form input {
width: calc(100% - 40px); /* Adjusting input width */
padding: 12px 20px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
form button {
width: calc(100% - 40px); /* Adjusting button width */
background-color: #007bff;
color: #fff;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
form button:hover {
background-color: #0056b3;
}
.form-link {
margin-top: 10px;
font-size: 14px;
}
.form-link a {
color: #007bff;
text-decoration: none;
}
.form-link a:hover {
text-decoration: underline;
}