-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle3.css
95 lines (83 loc) · 1.59 KB
/
style3.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
.form-box {
max-width: 300px;
background: #f1f7fe;
overflow: hidden;
border-radius: 16px ;
border-color: #010101;
color: #010101;
}
.form {
position: relative;
display: flex;
flex-direction: column;
padding: 32px 24px 24px;
gap: 16px;
text-align: center;
}
/*Form text*/
.title {
font-weight: bold;
font-size: 1.6rem;
}
.subtitle {
font-size: 1rem;
color: #666;
}
/*Inputs box*/
.form-container {
overflow: hidden;
border-radius: 8px;
background-color: #fff;
margin: 1rem 0 .5rem;
width: 100%;
}
.input {
background: none;
border: 0;
outline: 0;
height: 40px;
width: 100%;
border-bottom: 1px solid #eee;
font-size: .9rem;
padding: 8px 15px;
}
.form-section {
padding: 16px;
font-size: .85rem;
background-color: #e0ecfb;
box-shadow: rgb(0 0 0 / 8%) 0 -1px;
}
.form-section a {
font-weight: bold;
color: #0066ff;
transition: color .3s ease;
}
.form-section a:hover {
color: #005ce6;
text-decoration: underline;
}
/*Button*/
.form button {
background-color: #0066ff;
color: #fff;
border: 0;
border-radius: 24px;
padding: 10px 16px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background-color .3s ease;
}
.form button:hover {
background-color: #005ce6;
}
.main{
position: relative;
}
/* .form-box{
font-size: 7vw;
position: absolute;
bottom: 20%;
left: 50%;
transform: translate(-50%, -50%);
} */