@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono|Sedgwick+Ave+Display');

body {
margin: 0;
padding: 0;
font-family: "Inter UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #CFD8DC;
text-align: left;
background-image: url(https://telegra.ph/file/46dc34e9a2cb4cd32f347.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
position: relative;
}

.container {
max-width: 800px;
padding: 20px;
background: rgba(0, 0, 0, 0.3);
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
position: relative;
z-index: 10;
}

.card {
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 15px;
backdrop-filter: blur(10px);
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
opacity: 0.7; /* Ajuste a opacidade conforme desejado */
}

.card-header {
background: linear-gradient(45deg, #ff0000, #ff7f00);
color: rgba(255, 255, 255, 0.8);
padding: 15px 20px;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
text-align: center;
font-weight: bold;
text-transform: uppercase;
opacity: 0.9; /* Ajuste a opacidade conforme desejado */
}

.card-body {
padding: 20px;
border-radius: 0 0 15px 15px;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.form-group {
margin-bottom: 20px;
}

.form-control {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ddd;
background: rgba(255, 255, 255, 0.6);
color: #000;
text-align: center;
}

.btn {
padding: 10px 20px;
border: none;
border-radius: 30px;
color: white;
cursor: pointer;
transition: all 0.3s ease-in-out;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
text-transform: uppercase;
font-weight: bold;
}

.btn-primary {
background: linear-gradient(45deg, #007bff, #00c6ff);
}

.btn-primary:hover {
background: linear-gradient(45deg, #0056b3, #0082c8);
}

.btn-danger {
background: linear-gradient(45deg, #dc3545, #ff5733);
}

.btn-danger:hover {
background: linear-gradient(45deg, #c82333, #e60000);
}

.btn-warning {
background: linear-gradient(45deg, #ffc107, #ffec59);
color: black;
}

.btn-warning:hover {
background: linear-gradient(45deg, #e0a800, #ffd700);
}

h2 {
text-align: center;
margin-top: 20px;
color: #007bff;
}

h4 {
text-align: center;
margin-top: 20px;
color: rgba(255, 255, 255, 0.8);
font-weight: bold;
text-transform: uppercase;
}

.overlay {
position: absolute;
cursor: pointer;
width: 50%;
height: 50%;
z-index: 1;
transform: translateZ(34px);
}

.overlay:nth-of-type(1) {
left: 0;
top: 0;
}

.overlay:nth-of-type(2) {
right: 0;
top: 0;
}

.overlay:nth-of-type(3) {
bottom: 0;
right: 0;
}

.overlay:nth-of-type(4) {
bottom: 0;
left: 0;
}

@keyframes popIn {
0%,
13% {
transform: scaleX(.89) scaleY(.75);
opacity: 0;
}

100% {
opacity: 1;
}
}

.bg-effect {
position: absolute;
font-size: 400px;
color: rgba(255, 255, 255, 0.1);
z-index: 0;
background: linear-gradient(to top, rgba(32, 38, 40, 0) 25%, rgba(49, 57, 61, 1) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transform: translateX(-25%) translateZ(-100px) skewY(-3deg);
pointer-events: none;
transition: transform 1200ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
}

/* Estilo das gotas de água */
.drop {
position: absolute;
bottom: 100%;
left: 50%;
width: 5px;
height: 10px;
background: rgba(255, 255, 255, 0.6);
border-radius: 50%;
animation: drop 1s infinite;
opacity: 0;
}

.drop:nth-of-type(1) {
left: 20%;
animation-delay: 0.1s;
}

.drop:nth-of-type(2) {
left: 40%;
animation-delay: 0.3s;
}

.drop:nth-of-type(3) {
left: 60%;
animation-delay: 0.5s;
}

.drop:nth-of-type(4) {
left: 80%;
animation-delay: 0.7s;
}

@keyframes drop {
0% {
transform: translateY(0);
opacity: 1;
}

80% {
opacity: 1;
}

100% {
transform: translateY(100vh);
opacity: 0;
}
}