* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(48, 48, 202);
  min-height: 100vh;
  padding: 1rem;
}

.container {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inner-container {
  background-color: white;
  padding: 1rem;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  background-color: blue;
  border-radius: 10px;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-weight: 900;
  color: white;
}

.logo + p {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.login-form,
.inner-container-2 {
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
}
.login-form {
  padding: 0.5em;
}

.box {
  margin-bottom: 1rem;
  display: flex;
  position: relative;
}

i {
  position: absolute;
  top: 0.3em;
  left: 0.3em;
}

input,
button {
  width: 100%;
  padding: 1em;
  border-radius: 5px;
  border: 1px ridge gray;
}

input {
  padding-left: 3em;
}

input:focus {
  filter: drop-shadow(1px 1px 3px blue);
  outline: 1px ridge blue;
}

.password + p {
  text-align: right;
  margin-bottom: 1.5rem;
  font-size: 1em;
}
.password + p > a {
  text-decoration: none;
  color: blue;
  font-size: small;
}

button {
  background-color: blue;
  color: white;
  text-transform: capitalize;
  font-weight: bold;
  cursor: pointer;
}

.inner-container-2 {
  color: white;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  place-content: center;
  font-size: 0.7em;
}

.inner-container-2 a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  body {
    height: 100svh;
    width: 100vw;
    padding: 1rem;
  }
  .container {
    width: 100vw;
  }
  .inner-container {
    background-color: transparent;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo {
    background-color: white;
    color: blue;
    margin-bottom: 1rem;
  }
  .logo + p {
    width: 100px;
    color: white;
    font-weight: bolder;
    margin-bottom: 1rem;
  }
  .login-form {
    background-color: white;
    padding: 2em 1rem;
    flex-grow: 1;

    margin-bottom: 2rem;
  }
  .inner-container-2 {
    width: fit-content;
  }
}
