-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagradecimento.html
120 lines (101 loc) · 2.72 KB
/
agradecimento.html
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
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@1,700&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@1,700&display=swap');
</style>
<style>
body {
margin: 0;
display: flex;
place-content: center;
place-items: center;
width: 100vw;
height: 100vh;
overflow: hidden;
}
#main-container {
width: 100%;
min-height: 100%;
display: flex;
flex-direction: row;
}
#left-container {
flex: 1;
position: relative;
background-color: #D6E3F6;
display: flex;
flex-direction: column;
place-content: center;
place-items: center;
}
#left-container:before {
content: "";
background-image: url('./Imagem/bracosentrelacados.jpeg');
background-size: cover;
background-position: center;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
opacity: 0.5;
}
#mensagem {
width: 200px;
z-index: 0;
font-weight:bold;
font-family: 'Noto Serif', serif;
text-align: center;
}
#logo {
width: 200px;
height: 200px;
object-fit: contain;
z-index: 0;
}
#right-container {
flex: 1;
background-color: #DACFFA;
display: flex;
flex-direction: column;
place-content: center;
place-items: center;
}
form {
width:80%;
display: flex;
flex-direction: column;
gap: 6px;
font-family: Arial, Helvetica, sans-serif;
}
#form-title {
color: #4444a6;
font-weight: bold;
margin-bottom: 8px;
}
form input:not([type=submit]),
form select {
border: 2px solid #4444a6;
padding: 4px 8px;
border-radius: 3px;
}
form input[type=submit] {
margin-top: 8px;
padding: 4px 8px;
border: 2px solid #4444a6;
background-color: #6d47f6;
color: white;
border-radius: 3px;
}
</style>
<div id="main-container">
<div id="left-container">
<img id="logo" src="./Imagem/LogoAntonioTransparent.png" />
</div>
<div id="right-container">
<span id="mensagem">Agradecemos o seu interesse! Entraremos em contato em breve !</span>
</div>
</div>