@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  font-family: "Roboto";
}

a {
  text-decoration: none;
  color: #1a73e8;
  display: block;
  font-size: 14px;
}

.container {
  max-width: 450px;
  border: 1px solid rgb(228, 228, 228);
  margin: auto;
  margin-top: 4rem;
  border-radius: 10px;
  padding: 2rem;
  height: 500px;
  /* text-align: center; */
}

.top-content {
  text-align: center;
}

img {
  width: 80px;
  margin: 10px 0;
}

h2 {
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 10px;
}

.heading {
  margin-bottom: 30px;
}

.input {
  display: block;
  border: 1px solid rgb(228, 228, 228);
  font-size: 16px;
  width: 100%;
  height: 55px;
  padding: 0 15px;
  margin-bottom: 10px;
  background-color: transparent;
  outline: none;
  border-radius: 5px;
}

.inputs {
  position: relative;
}

.input-label {
  position: absolute;
  top: 15px;
  /* Start centered inside the input */
  left: 14px;
  color: rgb(122, 122, 122);
  background-color: white;
  /* Crucial: ensures it hides the input border behind it */
  padding: 0 5px;
  pointer-events: none;
  /* Crucial: lets you click through the label into the input */
  transition: 0.1s ease;
}

/* When focused or has text, move it up */
.input:focus~.input-label,
.input:not(:placeholder-shown)~.input-label {
  top: -10px;
  /* Adjust this value to move it completely above the border */
  font-size: 12px;
  color: #1a73e8;
}

.input:not(:placeholder-shown)~.input-label {
  top: -7px;
  color: #1864c9;
  font-size: 13px;
  background-color: white;
  z-index: 2;
}

.input:focus {
  border: 2px solid #1a73e8;
}

.link-btn {
  margin-bottom: 2rem;
}

.color {
  color: rgb(90, 90, 90);
  font-size: 14px;
  margin-bottom: 5px;
}

.btn-group {
  display: flex;
  justify-content: space-between;
}

.create-btn {
  border: none;
  background-color: transparent;
  color: #1a73e8;
  font-weight: bold;
  cursor: pointer;
  height: 35px;
  padding: 10px 5px;
}

.next-btn {
  background-color: #1a73e8;
  color: white;
  border: none;
  height: 38px;
  padding: 0 25px;
  border-radius: 5px;
  cursor: pointer;
}

.create-btn:hover {
  background-color: #e8f2ff6e;
  /* transition: 0.2s all ease-in; */
}

.next-btn:hover {
  background-color: #1864c9;
}