-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
102 lines (87 loc) · 1.42 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(to right, #003b8b, #0073e6);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
display: flex;
width: 80%;
max-width: 1200px;
background: #fff;
color: #333;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.image-section {
flex: 1;
position: relative;
}
.image-section .background {
background: url('background.jpg') no-repeat center center/cover;
width: 100%;
height: 100%;
}
.form-section {
flex: 1;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
}
h1 {
color: #003b8b;
margin-bottom: 10px;
}
p {
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
}
input {
margin-bottom: 15px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
input:focus {
border-color: #003b8b;
outline: none;
}
.options {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
}
button {
padding: 10px 15px;
background: #003b8b;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background: #0057b3;
}
a {
color: #003b8b;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}