* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

nav {
  display: flex;
  justify-content: center;
  background: #ffcf00;
  padding: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mt-50 {
  margin-top: 50px !important;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 2px solid #f5f5f5;
  padding: 25px;
  margin: 20px;
  gap: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card .logo {
  margin-top: 10px;
  margin-bottom: 10px;
}

.logo {
  max-width: 100px;
}

.divisor {
  height: 2px;
  width: 100%;
  background: #ffcf00;
  margin-bottom: 25px;
  border-radius: 1px;
}

.highlight-text {
  color: #ffcf00;
  font-weight: 700;
  font-size: 14px;
}

button {
  background: #ffcf00;
  color: #ffffff;
  width: 100%;
  outline: none;
  border: none;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #ffcf00;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(247, 121, 65, 0.3);
}

button:active {
  transform: translateY(0);
}

.input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.input-group label {
  color: #333333;
  margin-bottom: 8px;
  font-weight: 500;
}

.msg-error {
  color: #dc3545;
  text-align: center;
  font-weight: 500;
}

input {
  border: 2px solid #e5e5e5;
  padding: 16px 18px;
  border-radius: 10px;
  width: 100%;
  background: #ffffff;
  transition: all 0.3s ease;
  font-size: 14px;
}

input:focus {
  border-color: #ffcf00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(247, 121, 65, 0.1);
}

footer {
  position: fixed;
  bottom: 0px;
  display: flex;
  justify-content: center;
  background: #333333;
  padding: 23px;
  width: 100%;
  color: white;
}

@media (max-width: 400px) {
  footer {
    padding: 10px 20px;
  }

  .mt-50 {
    margin-top: 25px !important;
  }
}

.d-none {
  display: none;
}

.loader {
  background: #e5e5e5;
  border-radius: 22px;
  width: 100%;
  height: 18px;
  position: relative;
}

.loader::before {
  content: "";
  background: #ffcf00;
  width: var(--progress, 0%);
  height: 18px;
  border-radius: 22px;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: width 1s ease;
}

.video-container {
  background: #f5f5f5;
  width: 100%;
  height: 151px;
  border-radius: 14px;
  border: 2px solid #e5e5e5;
}

#verificated-text {
  font-size: 12px;
}

.nav-send {
  border: 2px solid #ffcf00;
  background: #ffcf00;
  padding: 8px 20px;
  font-size: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
}

.nav-send img {
  max-width: 20px;
}

.nav-send .location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.container-infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.container-infos p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-weight: 500;
}

.location-result {
  margin-top: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ffcf00;
  color: #333333;
}
