* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: #509e95;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#footer {
  margin-top: auto;
}

.form-container {
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  padding: 50px 20px;
}

.cursor-pointer {
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #fff;
  transition: 0.5s;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border: 3px solid #11069e;
}

.btn {
  transition: 0.5s;
}

.btn:hover {
  transform: scale(1.05);
}

.alert-popup {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}

.btn-main:hover {
  background-color: #1a5861;
  color: white;
  border: 0.2px solid #fff
}

.btn-main {
  background-color: #2a8b99;
  color: white;
  border: 0.2px solid #1a5861
}
