page{
    display: flex;
}


.p-side {
  margin-top: 15%;
  margin-left: 150px;
  width: 50%;
}
.logo {
  width: 50%;
  margin-bottom: auto;
  margin-left: -20px;
  margin-top: -20px;
}

.desc {
    
  width: 70%;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-top: auto;
  
}

.form-side{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 10%;
    margin-right: 10%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
   background: #fff;
   padding: 20px;
   border-radius: 8px;
}

.input-one{
    margin-top: 20px;
    padding-bottom: 20px;

}

.input-wrapper input {
  background-color: #ffffff;
  border: 1px solid gray;
  padding: 1rem;
  font-size: 1rem;
  width: 20rem;
  border-radius: 7px;
  color: rgb(2, 0, 0);
  cursor: pointer;
}

.input-wrapper input:focus {
  outline-color: rgb(140, 0, 255);
}

.btn {
    margin-top: 1rem;
    border-radius: 7px;
    width: 22rem;
    background: blue;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: white;
}

.link{
   margin-top: 1rem;
  margin-left:30%;
}

a{
    text-decoration: none;
    color: blueviolet;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.line{
    width: 90%;
    height: .5px;
    background-color: grey;
    margin: 20px;
}



.button {
    width: 50%;
    margin-left: 17%;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f4f0ff;
  background-color: green;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.button::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  border-radius: 0.5rem;
  background: linear-gradient(
      180deg,
      rgba(8, 77, 126, 0) 0%,
      rgba(8, 77, 126, 0.42) 100%
    ),
    rgba(47, 255, 255, 0.24);
  box-shadow: inset 0 0 12px rgba(151, 200, 255, 0.44);
  z-index: -1;
}

.button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(8, 77, 126, 0) 0%,
      rgba(8, 77, 126, 0.42) 100%
    ),
    rgba(47, 255, 255, 0.24);
  box-shadow: inset 0 0 12px rgba(151, 200, 255, 0.44);
  border-radius: 0.5rem;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in;
}

.button:hover::after {
  opacity: 1;
}

.button-border {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  z-index: -1;
}

.button-border::before {
  content: "";
  position: absolute;
  border-radius: 0.5rem;
  padding: 1px;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(184, 238, 255, 0.24) 0%,
      rgba(184, 238, 255, 0) 100%
    ),
    linear-gradient(0deg, rgba(184, 238, 255, 0.32), rgba(184, 238, 255, 0.32));
  
  pointer-events: none;
}







@media(max-width:767px){
  page{
    display: flex;
    flex-wrap: wrap;

  }

  .form-side{
    width: 100%;
    margin: auto;
  }

  .p-side{
    width: 100%;
   margin-left: 0;
   margin-top: 10px;
   text-align: center;
  }

  .desc{
    text-align: center;
    margin: auto;
  }
  .logo{
    width: 80%;
  }
}