-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
104 lines (92 loc) · 2.77 KB
/
Copy pathcontact.css
File metadata and controls
104 lines (92 loc) · 2.77 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
body {
background-color: #0c0c0c;
color: #eee;
font-family: "Poppins", sans-serif;
}
.navbar {
background: #0c0c0c !important;
border-bottom: 1px solid rgba(255, 215, 0, 0.18);
padding: 1rem 2.5rem;
}
.navbar-brand {
font-weight: 700;
color: #ffd700 !important;
letter-spacing: 2px;
}
.nav-link {
color: #ddd !important;
margin: 0 8px;
padding: 5px 12px !important;
border-radius: 4px;
transition: 0.25s;
}
.nav-link:hover {
background: rgba(255, 215, 0, 0.15);
color: #ffd700 !important;
}
.nav-login {
background: linear-gradient(45deg, #ffd700, #b8930b);
color: #000 !important;
font-weight: 600;
border-radius: 4px;
padding: 7px 14px !important;
box-shadow: 0 0 8px rgba(255,215,0,0.4);
}
.nav-login:hover {
background: #fff;
box-shadow: 0 0 12px #fff;
}
.title-page {
text-align: center;
margin: 60px 0 30px;
color: #ffd700;
font-size: 2.2rem;
font-weight: 700;
text-shadow: 0 0 15px rgba(255,215,0,0.25);
}
.contact-container {
max-width: 700px;
margin: 50px auto;
background: rgba(255,255,255,0.05);
padding: 30px;
border-radius: 8px;
border: 1px solid rgba(255,215,0,0.12);
box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
}
.input-box {
background: #0c0c0c;
border: 1px solid rgba(255,215,0,0.2);
color: #eee;
padding: 12px;
width: 100%;
border-radius: 5px;
margin-bottom: 15px;
transition: 0.3s;
}
.input-box:focus {
outline: none;
border-color: #ffd700;
box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.btn-send {
width: 100%;
padding: 12px;
background: #ffd700;
color: #000;
font-weight: bold;
border: none;
border-radius: 5px;
transition: 0.3s;
}
.btn-send:hover {
background: #fff;
box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}
.info {
margin-top: 30px;
text-align: center;
color: #ddd;
}
.info p {
margin: 3px 0;
}