-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.css
83 lines (71 loc) · 1.57 KB
/
login.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
73
74
75
76
77
78
79
80
81
82
83
/* Styling for the body and heading */
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
text-align: center;
color: rgba(30, 58, 219, 0.801);
}
/* Styling for the form */
form {
max-width: 400px;
margin: 0 auto;
border: 1px solid #ccc;
padding: 20px;
border-radius: 5px;
color: darkblue;
font-weight: bold;
}
label {
display: block;
margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
input[type="password"] {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 20px;
}
select {
height: 40px;
}
input[type="submit"] {
width: 100%;
padding: 10px;
font-size: 16px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
/* Optional: Styling for form error messages */
.error {
color: red;
font-size: 14px;
margin-top: 5px;
}
.form-container::before {
content: "";
background-image: url("./goku.jpg");
background-size: cover;
background-position: center;
position: absolute;
top: 0%;
left: 0;
right: 0;
bottom: 0;
opacity: 1.7; /* Adjust this value to control the blur effect */
filter: blur(2px); /* Adjust this value to control the blur amount */
z-index: -1;
}