html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../assets/brand/background.png");
  background-size: cover;
  color: white;
}

header {
    display: flex;
    background-color: white;
    width: 100%;
    padding: 5%;
}

.form-signin h1 {
    padding: 15% 5%;
    font-size: 1.3em;
}

header img {
    height: 80%;
}

p {
    font-size: 0.775em;
}

p span {
    font-weight: 700;
}

p:last-child span {
    margin-left: 0.5em;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input {
    border-radius: 0.3em; 
    margin-bottom: 1.5em;
}

.form-signin label {
    margin-bottom: 0.8em;
    font-size: 0.775em;
}

.form-signin div.form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-signin input[type="email"] {
}

.form-signin input[type="email"]::placeholder {
    color: lightgray;
}

.form-signin input[type="password"] {
    margin-bottom: 0.3em;
}

.form-signin input[type="password"]::placeholder {
    font-size: 1.5em;
    color: black;
}

.form-signin p {
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15%;
}

.form-signin button {
    color: #184376;
    font-weight: 700;
    background-color: #e6e6e6;
}

@media (min-width: 375px) {
    .form-signin {
        margin-top: 15%;
        margin-bottom: 10%;
        padding: 0;
    }

    .form-signin h1 {
        font-size: 1.5em;
        padding: 0 0 15%;
        margin-bottom: 10%;
    }

    .form-signin input {
        height: 3.2em;
    }

    header img {
        height: 90%;
    }

    p {
        font-size: 0.875em;
    }

    .form-signin label {
        font-size: 0.875em;
    }

    .form-signin button {
        height: 3.2em;
    }
}  

@media (min-width: 414px) {
    header img {
        height: 100%;
    }

    .form-signin h1 {
        font-size: 1.7em;
    }

    .form-signin p {
        margin-bottom: 20%;
    }

    .form-signin {
        margin-bottom: 10%;
        max-width: 370px;
    }

    .form-signin input {
        height: 3.5em;
    }

    .form-signin input[type="email"]::placeholder {
        font-size: 1.3em;
    }

    .form-signin label {
        font-size: 0.975em;
    }

    .form-signin input[type="password"]::placeholder {
        font-size: 2em;
    }
}