body {
    background-image: url('asset/bg2.jpg');
    background-size: cover;
}

nav {
    width:30rem;
    margin-left:6rem;
    margin-top: 4rem;
    text-align: center;
    color: white;
}

nav h1 {
    font-size: xx-large;
}


form {
    width:30rem;
    margin-left:6rem;
    margin-top: 1em;
    display: flex;
    flex-direction: column;
}

form select {
    font-size: medium;
    border-style: none;
}

form input, select {
    margin-top: 1rem;
    font-size: medium;
    border-style: none;
    display: inline-block;
    height: 2rem;
}

form input[type=submit] {
    background-color: rgb(151, 92, 36);
    color:#fff;
   
}

form h3 {
    color:black;
    border-bottom-style:solid;
    border-width: 1px;
    height: 1.5em;
}
.box-input {
    position: relative;
    margin: 2rem;
  }
  
  .border {
    background-image: linear-gradient(to right bottom, #e300ff, #ff00aa, #ff5956, #ffb900, #fffe00);
    box-shadow: -25px -10px 30px -5px rgba(225, 0, 255, 0.5),
      25px -10px 30px -5px rgba(255, 0, 212, 0.5),
      25px 10px 30px -5px rgba(255, 174, 0, 0.5),
      -25px 10px 30px -5px rgba(255, 230, 0, 0.5);
    padding: 4px;
  }
  
  .input {
    background-color: #212121;
    max-width: fit-content;
    height: 40px;
    padding: 0 19px 0 10px;
    font-size: 1.1em;
    position: relative;
    border: none;
    color: white;
    outline: 0;
    overflow: hidden;
  }
  
  .box-input::after,
  .box-input::before {
    content: "";
    width: fit-content;
    height: 30px;
    position: absolute;
    z-index: -1;
  }
  
  .box-input::after {
    bottom: 0;
    right: 0;
  }
  
  .box-input::before {
    top: 0;
    left: 0;
  }
  
  .input::placeholder {
    transition: all 0.5s ease-in, transform 0.2s ease-in 0.6s;
  }
  
  .input:focus::placeholder {
    padding-left: 165px;
    transform: translateY(-50px);
  }

  .user__section{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    height: 10rem;
    justify-content: center;
    align-items: center;
  }
  .user{
    display: flex;
    flex-direction: column;
  }