
@font-face {
  font-family: 'fonte1';
  src: url('fontes/Barking\ at\ Stars\ Straight.otf') format('opentype');
}
@font-face {
  font-family: 'fonte2';
  src: url('fontes/Brampton\ Serif\ Demo.otf') format('opentype');
}
@font-face {
  font-family: 'fonte3';
  src: url('fontes/Chomixi3D-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'fonte4';
  src: url('fontes/Crimen\ en\ Levante.ttf') format('truetype');
}
@font-face {
  font-family: 'fonte5';
  src: url('fontes/Double\ Tracker.ttf') format('truetype');
}
@font-face {
  font-family: 'fonte6';
  src: url('fontes/Faster\ Stroker.otf') format('opentype');
}
@font-face {
  font-family: 'fonte7';
  src: url('fontes/Good\ Explorer.ttf') format('truetype');
}
@font-face {
  font-family: 'fonte8';
  src: url('fontes/GraffitiYouth-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'fonte9';
  src: url('fontes/Improbable.ttf') format('truetype');
}
@font-face {
  font-family: 'fonte10';
  src: url('fontes/Mega\ Surprise.ttf') format('truetype');
}
@font-face {
  font-family: 'fonte11';
  src: url('fontes/New\ York\ Hardcore.ttf') format('truetype');
}
@font-face {
  font-family: 'fonte12';
  src: url('fontes/Pentagono\ Grunge.ttf') format('truetype');
}
@font-face {
  font-family: 'fonte13';
  src: url('fontes/Ranmor.otf') format('opentype');
}
@font-face {
  font-family: 'fonte14';
  src: url('fontes/SilvercrushDEMO.otf') format('opentype');
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("img/foto1.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.319);
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 70px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  margin: 20px;
}

.container:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #113cbc8d, #fcfbf7c0);
  animation: gradient 5s linear infinite;
}


.header {
  color: #ffffff;
  padding: 20px;
  text-align: center;
  font-size: 30px;
  margin: 0;
  background: linear-gradient(90deg, #113cbc, #FFA500);
  -webkit-background-clip: text;
  color: #070707;
  animation: gradient 5s linear infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.form-container {
  padding: 20px;
  transition: padding 0.3s ease;
}

.form-container:hover {
  padding: 30px;
}

form {
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #070707;
  font-size: 20px;
  font-weight: bold;
}

.input-container {
  position: relative;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 1px solid #dddddd;
  background-color: #f9f9f9;
  color: #333333;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  font-size: 18px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #e9930a;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(237, 149, 8, 0.5);
}

.input-group {
  display: flex;
  gap: 10px;
}

input[type="submit"] {
  background-color: #4169E1;
  color: white;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  display: inline-block;
  font-family: 'fonte7', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 3px;
}

input[type="submit"]:hover {
  background-color: #FFA500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.title {
  font-size: 45px;
  margin-bottom: 10px;
  font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 5px;
  color: #000000;
  margin-top: 20px;
}
  
