-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
122 lines (105 loc) · 2.26 KB
/
contact.css
File metadata and controls
122 lines (105 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
117
118
119
120
121
122
.contact-section {
padding: 100px 0 40px;
color: #fff;
font-family: "Poppins", sans-serif;
}
.Container-Conatact
{
background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
border: 1px solid var(--stroke);
box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
border-radius: 35px;
}
/* LEFT */
.contact-left {
background: rgba(255, 255, 255, 0.05);
padding: 40px;
border-radius: 20px;
backdrop-filter: blur(10px);
}
.contact-tag {
display: inline-flex;
align-items: center;
gap: 10px;
color: #ffd166;
font-size: 0.82rem;
font-weight: 900;
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 18px;
}
.contact-left h6 {
max-width: 820px;
font-size: clamp(2.9rem, 7.6vw, 6.7rem);
line-height: 0.92;
font-weight: 950;
letter-spacing: -0.085em;
margin-bottom: 24px;
background: linear-gradient(135deg, #ffffff 0%, #d8c8ff 45%, #78e7ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.contact-desc {
color: #ccc;
margin-top: 15px;
}
/* FORM */
.contact-form-box {
padding: 40px;
}
/* Inputs */
.contact-form-box label {
font-size: 14px;
margin-bottom: 5px;
display: block;
}
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
width: 100%;
padding: 12px;
border-radius: 10px;
border: 1px solid rgba(255,255,255,0.2);
background: transparent;
color: #fff;
outline: none;
}
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
color: #aaa;
}
/* Button */
.submit-btn {
background: linear-gradient(45deg, #f7b267, #ff6a88);
border: none;
padding: 12px;
border-radius: 30px;
font-weight: 800;
color: #000;
}
/* Footer */
.footer-text {
margin-top: 50px;
font-size: 14px;
color: #aaa;
}
/* Responsive */
@media (max-width: 992px) {
.contact-left {
text-align: center;
}
.contact-left h2 {
font-size: 2rem;
}
}
@media (max-width: 576px) {
.contact-left,
.contact-form-box {
padding: 20px;
}
.contact-left h2 {
font-size: 1.7rem;
}
}