* {
    margin: 0%;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    display: grid;
    grid-template-columns: 55% 1fr;
    grid-template-rows: 1fr;
    height: 100vh;
    width: auto;
}

.login-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/images/3-min.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.product-name-bg {
    display: flex;
    flex-direction: column;
    background-color: #90D8F7;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    padding: 20px 0px 20px 0px;
}

.product-name {
    display: flex;
    flex-direction: column;
    background-color: white;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 50px;
    font-weight: 900;
    font-family: Arial, Helvetica, sans-serif;
}

.login-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #90D8F7;
}

.login-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
    color: white;
}

.login-form {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 350px;
    padding: 20px;
    gap: 10px;
    justify-content: center;
}

.login-form input {
    height: 40px;
    padding: 10px;
    border: solid .5px #b0b0b0;
    border-radius: 5px;
    color: black;
}

.password {
    display: flex;
    flex-direction: column;
    color: black;
    gap: 5px;
}

#forgotPassword {
    font-size: smaller;
    align-self: flex-end;
    text-decoration: none;
    color: black;
}

.btn-login {
    height: 50px;
    width: 100%;
    border: solid 1px blue;
    border-radius: 5px;
    align-self: center;
    margin-top: 10px;
    background-color: #0059ff;
    color: white;
    font-size: medium;
    font-weight: 600;
}

.btn-login:hover {
    background-color: blue
}

.portal-name {
    font-size: xx-large;
    font-weight: 600;
}

.portal-slogan {
    font-style: italic;
    font-weight: 600;
}

.login-logo {
    height: auto;
    width: 200px;
    align-self: center;
}

.login-info{
    font-size: smaller;
    color: red;
    font-weight: 400;
}