@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: unset;
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-banner {
    width: 60%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(85%);
}

.login-form-container {
    width: 40%;
    overflow: hidden;
}

.login-form-head {
    display: flex;
    width: 100%;
    padding: 60px 30px;
    justify-content: center;
    color: #082851;
}

.login-form-head h1 {
    font-size: 24px;
    font-weight: 700;
    margin: auto 10px;
}

.login-form-head img {
    height: 60px;
    object-fit: cover;
}

.login-form-body {
    height: 100%;
    padding: 0 10%;
}

.alert {
    margin-bottom: 30px;
}

.form-control {
    margin-bottom: 30px;
    border-color: black;
}

.login-form-body button {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: #0174be;
    color: #ffffff;
}

.login-form-body a{
    text-decoration: underline;
    color: #0174be;
    font-size: 13px;
    display: block;
    text-align: center;
    margin-top: 15px;
    width: 100%;
}