@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
  color: #1a73e8;
  display: block;
  font-size: 14px;
}

.container {
  width: 100%;
  max-width: 450px;
  border: 1px solid #e4e4e4;
  margin: 30px 0;
  border-radius: 10px;
  padding: 48px 40px 36px;
}

.header {
  text-align: center;
}
.header svg {
  margin: 10px 0;
}
.header h1 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.header h2 {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
}

.inputs {
  position: relative;
}
.inputs input[type=email] {
  display: block;
  border: 1px solid #e4e4e4;
  font-size: 16px;
  width: 100%;
  height: 55px;
  padding: 0 15px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  background-color: transparent;
  outline: none;
  border-radius: 5px;
  position: relative;
}
.inputs input[type=email]:focus {
  border: 2px solid #1a73e8;
}
.inputs input[type=email]:focus ~ .input-label {
  top: -7px;
  color: #1864c9;
  font-size: 13px;
  background-color: white;
  z-index: 2;
}
.inputs input[type=email]:target ~ .input-label {
  top: -7px;
  color: #1864c9;
  font-size: 13px;
  background-color: white;
  z-index: 2;
}
.inputs .input-label {
  position: absolute;
  top: 15px;
  font-size: 1.1rem;
  left: 14px;
  color: #7a7a7a;
  font-weight: 100;
  transition: 0.1s ease;
  background-color: #fff;
  padding: 0 5px;
}

.info .info__btn {
  margin-bottom: 32px;
  font-weight: 500;
}
.info .info__text {
  color: #5f6368;
  font-size: 14px;
  margin-bottom: 5px;
}

.button {
  display: flex;
  justify-content: space-between;
}
.button__create {
  border: none;
  background-color: transparent;
  color: #1a73e8;
  font-weight: bold;
  cursor: pointer;
  height: 35px;
  padding: 10px 5px;
  transform: translateX(-5px);
}
.button__create:hover {
  background-color: #e8f2ff6e;
}
.button__next {
  background-color: #1a73e8;
  color: #fff;
  border: none;
  height: 38px;
  padding: 0 25px;
  border-radius: 5px;
  cursor: pointer;
}
.button__next:hover {
  background-color: #1864c9;
}