-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathregistration.css
65 lines (65 loc) · 1.91 KB
/
registration.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
body {
font-family: Arial, sans-serif;
background-color: pink;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
position: relative;
}
.logo {
position: absolute;
top: 2px;
left: 2px;
}
.register-container {
background-color:skyblue;
padding: 20px;
border-radius: 35px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
}
.register-container h2 {
margin-bottom: 20px;
text-align: center;
}
.register-container input[type="text"],
.register-container input[type="number"],
.register-container input[type="tel"],
.register-container input[type="email"],
.register-container input[type="password"] {
width: calc(100% - 20px); /* Full width minus padding */
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
.button {
background-color: #5cb85c;
color: white;
border: dashed;
padding: 10px;
border-radius: 15px;
cursor: pointer;
width: calc(100% - 20px); /* Full width minus padding */
text-align: center;
}
.register-container input[type="submit"]:hover {
background-color: #4cae4c;
}
.login-link {
margin-top: 10px;
text-align: center;
}
.login-link a {
color: #007bff;
text-decoration: none;
}
.login-link a:hover {
text-decoration: underline;
}
a {
text-decoration: none; /* Remove underline */
}