-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudent.css
More file actions
79 lines (70 loc) · 1.71 KB
/
Copy pathstudent.css
File metadata and controls
79 lines (70 loc) · 1.71 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
/* General Styles */
:root {
--primary-color: #EB5B38;
--secondary-color: #272A2D;
--background-color: #E6E4DC;
--highlight-color: #347CCB;
--link-color: #007bff;
}
body {
font-family: Arial, sans-serif;
background: url('path-to-your-background-image.jpg') no-repeat center center fixed;
background-size: cover;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: var(--highlight-color);
backdrop-filter: blur(5px); /* To add blur effect */
}
h2 {
color: var(--primary-color);
text-align: center;
margin-bottom: 20px;
}
.form-container {
background-color: var(--secondary-color);
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border: 3px solid var(--primary-color); /* Matching the orange border color */
text-align: center; /* Center form content */
}
form {
display: flex;
flex-direction: column; /* Single column layout */
align-items: center;
gap: 20px; /* Spacing between fields */
width: 100%;
}
input[type="text"], input[type="email"], input[type="password"] {
width: 90%;
padding: 10px;
margin: 0;
border-radius: 5px;
border: 1px solid var(--primary-color);
font-size: 16px;
}
button {
width: 50%;
padding: 10px;
background-color: var(--primary-color);
color: var(--background-color);
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 18px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: var(--highlight-color);
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}