-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.css
More file actions
80 lines (74 loc) · 1.89 KB
/
first.css
File metadata and controls
80 lines (74 loc) · 1.89 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
body{
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(241, 240, 159);
display: flex;
justify-content: left;
align-items: left;
height: auto;
min-height: 100vh;
margin: auto;
}
.login-container h1{
align-items: center;
color: rgb(250, 85, 9);
}
.input-group{
margin-bottom: 20px;
text-align: left;
}
.input-group label{
display: block;
margin-bottom: 8px;
color: black;
font-weight: bold;
}
.input-group input[type="text"],
.input-group input[type="password"] {
width: calc(100% - 20px); /* Account for padding */
padding: 12px 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
}
.input-group input[type="text"]:focus,
.input-group input[type="password"]:focus {
border-color: #007bff;
outline: none;
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}
button {
display: block;
background-color: #007bff;
color: white;
margin-bottom: 8px;
padding: 12px 8px;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
width: 30%;
}
button:hover {
background-color: #0056b3;
}
.signup-link {
margin-top: 50px;
font-size: 15px;
}
.signup-link a {
color: #007bff;
text-decoration: none;
font-weight: bold;
}
.signup-link a:hover {
text-decoration: underline;
}
img{
width: 700px;
height: auto;
border: 5px solid #ff7300;
border-radius: 8px;
display: block;
margin: 20px auto;
}