-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (88 loc) · 1.73 KB
/
styles.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* Custom Styles for the Login Page */
/* Body Styles */
body {
font-family: 'Montserrat', sans-serif;
background: linear-gradient(135deg, #FF6F61, #FF4F4F);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/* Main Container for the Login Form */
.bg-black {
background-color: rgba(0, 0, 0, 0.7);
padding: 32px;
border-radius: 10px;
width: 100%;
max-width: 400px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
/* Heading Styles */
.text-4xl {
font-size: 2.25rem;
font-weight: bold;
}
.text-white {
color: white;
}
.text-sm {
font-size: 0.875rem;
}
/* Form Styling */
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
/* Form Labels */
label {
font-size: 0.875rem;
color: #fff;
margin-bottom: 8px;
}
/* Input Fields Styling */
input {
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
margin-bottom: 16px;
width: 100%;
transition: all 0.3s ease-in-out;
}
/* Focused Input Fields */
input:focus {
border: 2px solid #FF4F4F;
outline: none;
box-shadow: 0 0 10px rgba(255, 79, 79, 0.5);
}
/* Button Styling */
button {
background-color: #FF4F4F;
color: white;
padding: 12px;
width: 100%;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #FF6F61;
}
/* Footer Styling */
footer {
font-size: 0.875rem;
text-align: center;
color: white;
}
footer a {
color: #FF6F61;
text-decoration: none;
}
footer a:hover {
color: white;
}
/* Back Link Styling */
.mt-4 {
margin-top: 16px;
}