-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (103 loc) · 2.26 KB
/
Copy pathstyles.css
File metadata and controls
116 lines (103 loc) · 2.26 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* General Body Styles */
body {
font-family: 'Poppins', sans-serif;
background-color: #f0f4f8; /* Light blue-gray background */
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
/* Main Container for the Form */
.container {
background-color: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 91, 187, 0.15);
width: 100%;
max-width: 500px;
text-align: center;
}
/* Header Section */
.header {
margin-bottom: 30px;
}
.header h1 {
color: #005bbb; /* Professional Blue */
font-size: 2.5em;
font-weight: 600;
margin: 0;
}
.header h2 {
color: #555;
font-size: 1.2em;
font-weight: 400;
margin-top: 5px;
}
/* Form Grouping */
.form-group {
margin-bottom: 20px;
text-align: left;
}
.form-group label {
display: block;
font-weight: 600;
margin-bottom: 8px;
color: #333;
}
/* Input and Select Fields */
.form-group input,
.form-group select {
width: 100%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1em;
font-family: 'Poppins', sans-serif;
box-sizing: border-box; /* Important for padding and width */
transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus {
outline: none;
border-color: #005bbb;
box-shadow: 0 0 8px rgba(0, 91, 187, 0.2);
}
/* Submit Button */
.submit-btn {
width: 100%;
padding: 15px;
background: linear-gradient(45deg, #005bbb, #007bff);
color: #ffffff;
border: none;
border-radius: 8px;
font-size: 1.1em;
font-weight: 600;
cursor: pointer;
transition: background 0.3s, transform 0.2s;
}
.submit-btn:hover {
background: linear-gradient(45deg, #004a99, #006fe6);
transform: translateY(-2px);
}
/* Success Page Specific Styles */
.header p {
font-size: 1.1em;
color: #333;
line-height: 1.6;
}
.back-link {
display: inline-block;
margin-top: 25px;
text-decoration: none;
color: #005bbb;
font-weight: 600;
border: 1px solid #005bbb;
padding: 10px 20px;
border-radius: 8px;
transition: background-color 0.3s, color 0.3s;
}
.back-link:hover {
background-color: #005bbb;
color: #ffffff;
}