-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (89 loc) · 2.21 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (89 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
body {
background: url('download (11).jpeg') no-repeat center center fixed;
background-size: cover;
font-family: 'Poppins', sans-serif;
position: relative;
min-height: 100vh;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: inherit;
z-index: 1;
}
.welcome-message {
position: relative;
z-index: 2;
background-color: rgba(255, 255, 255, 0.8); /* Slightly opaque white background */
padding: 20px;
border-radius: 10px;
margin-top: 50px;
margin-bottom: 30px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds shadow for better visibility */
}
.welcome-message h1 {
color: #007bff;
}
.welcome-message p {
color: #333;
}
form {
position: relative;
z-index: 2;
border-radius: 20px;
margin-top: 80px !important; /* Adjust this value to move the form up */
width: 24% !important;
background-color: rgba(255, 255, 255, 0.9); /* Slightly opaque white background */
padding: 50px;
margin: 0 auto; /* Center the form */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds shadow for better visibility */
}
.btn-primary {
width: 100%;
border: none;
border-radius: 50px;
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(75, 14, 154, 1) 35%, rgba(0, 212, 255, 1) 100%);
}
.form-control {
color: rgba(0, 0, 0, .87);
border-bottom-color: rgba(0, 0, 0, .42);
box-shadow: none !important;
border: none;
border-bottom: 1px solid;
border-radius: 4px 4px 0 0;
}
h4 {
font-size: 2rem !important;
font-weight: 700;
text-align: center;
color: #333;
}
.form-label {
font-weight: 800 !important;
color: #333;
}
#forgot-password {
color: #007bff;
text-decoration: none;
display: block;
margin-top: 15px;
}
#forgot-password:hover {
text-decoration: underline;
}
#message {
font-size: 1.2rem;
font-weight: bold;
text-align: center;
margin-top: 20px;
}
@media only screen and (max-width: 600px) {
form {
width: 90% !important;
}
}