-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestyle.css
More file actions
78 lines (68 loc) · 2.01 KB
/
restyle.css
File metadata and controls
78 lines (68 loc) · 2.01 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
body {
font-family: Arial, sans-serif;
background-image: url('bg\ 2.jpg');
}
.container {
/* Adjust the image path as needed */
background-size: cover;
background-position: center center;
padding: 50px;
color: #fff; /* White text for contrast */
text-align: center;
}
.container-form {
background-color: rgba(30, 30, 30, 0.8); /* Dark semi-transparent background */
opacity: 0.8;
border-radius: 10px; /* Rounded corners */
width: 400px;
padding: 40px; /* Inner spacing */
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Shadow effect */
margin: auto; /* Center the form */
height: auto;
}
.logo {
width: 200px;
margin-bottom: 20px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
color: #FFD700; /* Gold color for the heading */
}
.form-group {
margin-bottom: 20px;
text-align: left; /* Align label and inputs to the left */
color: white; /* White text for labels */
}
label {
display: block;
margin-bottom: 5px; /* Reduced space below the label */
}
input, select {
width: 100%; /* Full width of the form */
padding: 10px;
border-radius: 5px;
border: 1px solid #ffffff; /* White border */
background-color: rgba(255, 255, 255, 0.1); /* Darker input background */
color: white; /* White text */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
transition: border-color 0.3s; /* Smooth border color transition */
}
input:focus, select:focus {
border-color: #00bcd4; /* Change border color on focus */
outline: none; /* Remove default outline */
}
button {
background-color: #00bcd4; /* Button background color */
color: #fff;
border: none;
padding: 12px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
text-align: center;
font-size: 1em; /* Increase font size */
}
button:hover {
background-color: #0097a7; /* Darker shade on hover */
}