1 | .formContainer {
|
---|
2 | display: flex;
|
---|
3 | justify-content: center;
|
---|
4 | align-items: center;
|
---|
5 | padding: 40px 20px;
|
---|
6 | background-color: #f7f7f7;
|
---|
7 | min-height: 100vh;
|
---|
8 | }
|
---|
9 |
|
---|
10 | .applicationForm {
|
---|
11 | background-color: #fff;
|
---|
12 | padding: 30px;
|
---|
13 | border-radius: 10px;
|
---|
14 | box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
---|
15 | max-width: 700px;
|
---|
16 | width: 100%;
|
---|
17 | border: 1px solid #ddd;
|
---|
18 | box-sizing: border-box;
|
---|
19 | }
|
---|
20 |
|
---|
21 | .formTitle {
|
---|
22 | font-size: 26px;
|
---|
23 | font-weight: bold;
|
---|
24 | color: #333;
|
---|
25 | margin-bottom: 25px;
|
---|
26 | text-align: center;
|
---|
27 | }
|
---|
28 |
|
---|
29 | .formGroup {
|
---|
30 | margin-bottom: 20px;
|
---|
31 | }
|
---|
32 |
|
---|
33 | .formGroup label {
|
---|
34 | display: block;
|
---|
35 | margin-bottom: 5px;
|
---|
36 | font-weight: bold;
|
---|
37 | color: #333;
|
---|
38 | }
|
---|
39 |
|
---|
40 | .formGroup input[type="text"],
|
---|
41 | .formGroup input[type="email"],
|
---|
42 | .formGroup input[type="tel"],
|
---|
43 | .formGroup input[type="file"],
|
---|
44 | .formGroup textarea {
|
---|
45 | width: 100%;
|
---|
46 | padding: 12px;
|
---|
47 | border: 1px solid #ddd;
|
---|
48 | border-radius: 4px;
|
---|
49 | font-size: 16px;
|
---|
50 | box-sizing: border-box;
|
---|
51 | }
|
---|
52 |
|
---|
53 | .formGroup input[type="text"]:focus,
|
---|
54 | .formGroup input[type="email"]:focus,
|
---|
55 | .formGroup input[type="tel"]:focus,
|
---|
56 | .formGroup input[type="file"]:focus,
|
---|
57 | .formGroup textarea:focus {
|
---|
58 | border-color: #e0a500;
|
---|
59 | outline: none;
|
---|
60 | }
|
---|
61 |
|
---|
62 | .buttonContainer {
|
---|
63 | text-align: right;
|
---|
64 | }
|
---|
65 |
|
---|
66 | .submitButton {
|
---|
67 | background-color: #e0a500;
|
---|
68 | color: #fff;
|
---|
69 | padding: 12px 20px;
|
---|
70 | border: none;
|
---|
71 | border-radius: 4px;
|
---|
72 | cursor: pointer;
|
---|
73 | font-size: 16px;
|
---|
74 | transition: background-color 0.3s ease;
|
---|
75 | }
|
---|
76 |
|
---|
77 | .submitButton:hover {
|
---|
78 | background-color: #cc8b00;
|
---|
79 | }
|
---|
80 |
|
---|
81 | @media (max-width: 768px) {
|
---|
82 | .applicationForm {
|
---|
83 | padding: 20px;
|
---|
84 | }
|
---|
85 |
|
---|
86 | .formTitle {
|
---|
87 | font-size: 22px;
|
---|
88 | margin-bottom: 20px;
|
---|
89 | }
|
---|
90 |
|
---|
91 | .formGroup input[type="text"],
|
---|
92 | .formGroup input[type="email"],
|
---|
93 | .formGroup input[type="tel"],
|
---|
94 | .formGroup input[type="file"],
|
---|
95 | .formGroup textarea {
|
---|
96 | font-size: 14px;
|
---|
97 | }
|
---|
98 |
|
---|
99 | .submitButton {
|
---|
100 | padding: 10px 15px;
|
---|
101 | font-size: 14px;
|
---|
102 | }
|
---|
103 | }
|
---|
104 | .messageContainer {
|
---|
105 | display: flex;
|
---|
106 | flex-direction: column;
|
---|
107 | align-items: center;
|
---|
108 | }
|
---|
109 |
|
---|
110 | .formTitle {
|
---|
111 | font-size: 24px;
|
---|
112 | font-weight: bold;
|
---|
113 | color: #333;
|
---|
114 | margin-bottom: 10px;
|
---|
115 | }
|
---|
116 |
|
---|
117 | .loginButton {
|
---|
118 | background-color: #e0a500;
|
---|
119 | color: #fff;
|
---|
120 | padding: 12px 20px;
|
---|
121 | border: none;
|
---|
122 | border-radius: 4px;
|
---|
123 | cursor: pointer;
|
---|
124 | font-size: 16px;
|
---|
125 | transition: background-color 0.3s ease;
|
---|
126 | margin-top: 10px;
|
---|
127 | }
|
---|
128 |
|
---|
129 | .loginButton:hover {
|
---|
130 | background-color: #cc8b00;
|
---|
131 | }
|
---|