-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (62 loc) · 1.22 KB
/
style.css
File metadata and controls
67 lines (62 loc) · 1.22 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
body {
font-family: Arial, sans-serif;
background-color: #f43669b7;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: white;
display: flex;
border-radius: 50px;
box-shadow: 0 4px 8px rgba(166, 26, 26, 0.2);
}
.image-section {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.image-section img {
width: 100%;
height: auto;
}
.form-section {
flex: 1.5;
padding: 50px;
}
.form-section h1{
text-align: center;
color: rgba(0, 60, 255, 0.518);
}
.form-group {
margin-bottom: 15px;
}
.form-group input {
width: 100%;
padding: 10px;
box-sizing: border-box;
border:1px solid #cccccc;
border-left: 0;
border-right: 0;
border-top: 0;
border-radius: 4px;
color: gray;
}
.form-group input:hover{
background-color: rgba(255, 0, 217, 0.105);
}
button {
display: inline-block;
padding: 10px 20px;
color: white;
background-color: #4CAF50;
border: none;
border-radius: 10px;
margin-left:100px;
}
button:hover {
background-color:gray;
}