body {
    margin: 0;
}

.img-login {
    position: relative;
    background: url('/images/background-login.png') no-repeat;
    background-size: cover;
}

.img-login::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(22, 27, 51, 0.80) 0%, rgba(217, 217, 217, 0.00) 100%);
}

.login-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100vh;
}

.form-login {
    background: #161B33;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-login h2 {
    color: #FFF;
    font-family: "Prompt", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
}

.form-login h3 {
    color: #FFF;
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 00;
    line-height: normal;
    margin-top: 68px;
    margin-bottom: 88px;

}

.form-control::placeholder {
    color: #FFF;
    opacity: 1;
}

.form-control {
    width: 470px !important;
    position: relative;
    background: transparent;
    outline: none;
    border-width: 0px 0px 0px 0px;
    flex-shrink: 0;
    padding: 5px;
    color: #FFF;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

.group-email {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #B4B4B4;
}

.motPasse
{
    font-family: Prompt;
}

.group-password {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #B4B4B4;
    margin-bottom: 20px;
}

.mb-1 a {
    display: flex;
    justify-content: end;
    color: #FFF;
    font-size: 16px;
    text-decoration: none;
}

.btn-block {
    width: 209px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 48px;
    background: linear-gradient(90deg, #404CED 35.15%, #4420BB 85.21%);
    margin: 0 auto;
    display: table;
    border: 0;
    color: #FFF;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 79px;
}

.error {
    color: red;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
  }
  .alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
      border-top-color: transparent;
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-left-color: transparent;
    border-radius: .25rem;
  }

@media only screen and (max-width: 1024px) {
    .img-login {
        display: none;
    }

    .form-login {

        height: 100vh;
    }

    .login-container {
        display: block;
    }

    .form-control {
        width: 350px;
    }
}