* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: #00BFA6;
}

input[type=number]::-webkit-inner-spin-button { 
    -webkit-appearance: none;
    
}

input[type=number] { 
   -moz-appearance: textfield;
   appearance: textfield;
}

header {
  position: sticky;
  color: #fff;
  width: 100%;
  height: 100px;
  top: 0;
  padding: 20px;
  background-color: #000;
}

.header-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

button{
  border: none;
  outline: none;
  cursor: pointer;
}

input{
    width: 100%;
    outline: none;
    font-size: 1rem;
    border: none;
}

input[type=text], input[type=email],input[type=password] , select, input[type=number]{
    border-radius: 10px;
    padding: .75rem .75rem;
    margin-top: .25rem;
}

h3 {
    color: #000000;
    font-size: 30px;
}

a {
  text-decoration: none;
  color: inherit;
}

.logo{
  color: #fff;
  font-size: xx-large;
}

.foto-perfil{
  position: absolute;
  right: 20px;
}

.flex{
  display: flex;
}

.gap-4{
  gap: 1rem;
}

.flex-col{
  display: flex;
  flex-direction: column;
}

.justify-between{
  display: flex;
  justify-content: space-between;
}

@media (width <= 640px){
  .foto-perfil{
    position: block;
  }

  .logo{
    font-size: x-large;
  }

  .header-container{
    justify-content: space-between;
  }
}