* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100vh;
  /* background: linear-gradient(135deg, #6e8efb, #a777e3); */
  background-color: #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  perspective: 1000px;
}

.form-box {
  width: 350px;
  height: 450px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease-in-out;
}

.form {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: #72bffe; */
  background-color: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 0 5px rgb(0, 0, 0);
  backface-visibility: hidden;
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.remembermeDiv {
  display: flex;
  flex-direction: row;
  /* background-color: red; */
  justify-content: center;
  gap: 20px;
  align-items: baseline;
}

img {
  margin-right: 20px;
  width: 100px;
}

.logoDiv {
  /* background-color: red; */
  display: flex;
  justify-content: space-around;
}

.signup {
  transform: rotateY(180deg);
  background: linear-gradient(120deg, #42e695, #3bb2b8);
}

h2,
h1,
h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #495057;
}

input {
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1em;
  border: 1px solid black;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  background-color: #03A9F4;
  color: white;
  border: 1px solid white;
  font-weight: bold;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: black;
}

.toggle1{
  display: grid;
  column-gap: 0px;
  grid-template-columns: auto auto;
}

.change a{
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: #03A9F4;
 
}
.change a:hover{
  color:  #005780fb;
  cursor: pointer;
}
.toggle  p{
  color: rgb(0, 0, 0);
  margin-left: 0px;
  text-align: center;
  font-size:12px;
  font-weight:bold;
}

.toggle a{
  background-color: #03A9F4;
  padding: 8px;
  border-radius: 3px;
  color: rgb(255, 255, 255);
}

.toggle a:hover {
  background-color: black;
  color: white;
  /* color: #fff; */
  cursor: pointer;
}
