body {
  background-color: #60f4ffc5;
  max-height: 100%;
  max-width: 100%;
}

section h1 {
  background-color: rgba(255, 255, 255, 0.651);
  max-width: fit-content;
  border-radius: 80px;
  padding-inline: 10px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10px;
}

section {
  text-align: center;
  margin-block: 3px;
}

.login {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 20px;
}

.signUp {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  margin: 0 auto;
}

/*
button {
    background-color: rgb(0, 168, 0);
    color: white;
    border-radius: 30px;
    padding-block: 6px;
    cursor: pointer;
    border: 2px solid green;
    margin-top: 6px;
}

button:hover {
    background-color: rgba(0, 168, 0, 0.705);
}
*/

.card {
  padding-inline: 60px;
  padding-bottom: 40px;
  background-color: #f2f2f2;
  border-radius: 16px;
  box-shadow: 0px 0px 19px 9px rgba(0, 0, 0, 0.74);
}

main {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.effect-2 {
  border: 0;
  padding: 7px 5px;
  border-bottom: 1px solid #ccc;
}

.effect-2 ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #3399ff;
  transition: 0.4s;
}

.effect-2:focus ~ .focus-border {
  width: 100%;
  transition: 0.4s;
  left: 0;
}

input {
  font:
    15px/24px "Lato",
    Arial,
    sans-serif;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
}

.input-wrap {
  position: relative;
  width: 100%;
}

.effect-2:focus {
  outline: none;
}

/* copy paste */

.button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0cf;
  border-radius: 10rem;
  z-index: -2;
}

.button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #008fb3;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}

.button:hover {
  color: #fff;
}

.button:hover:before {
  width: 100%;
}

