@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Roboto", sans-serif;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
}

img {
    width: 100%;
}

p span {
    font-weight: bold;
}

.main {
    display: grid;
    grid-template-columns: 1.2fr minmax(516px, 1fr);
    height: 100vh;
}

.left {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.left::before {
    content: "";
    position: absolute;
    background: url("/../assets/img/login-banner.jpg") no-repeat center center / cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
}

.left::after {
    content: "";
    position: absolute;
    background: rgba(138, 52, 52, 0.4);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.left .logo {
    width: 320px;
    height: auto;
    margin: 0 0;
}

.left .left-hero {
    margin-top: 40px;
}

.left .left-hero h1 {
    font-weight: 400;
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 56px;
    color: #ffffff;
    max-width: 592px;
}

.left .left-hero h1 span {
    font-weight: bold;
}

.left .left-hero p {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    max-width: 616px;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    padding: 50px;
}

.right-top {
    margin-left: auto;
}

.right-middle {
    display: flex;
    flex-direction: column;
}

.right-middle h2 {
    font-size: 24px;
    line-height: 33px;
    font-weight: normal;
    max-width: 310px;
}

.right-middle h2 span {
    color: #cc0000;
}

.right-middle form {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    width: 100%;
    margin-top: 50px;
}

.right-middle form>p {
    font-weight: bold;
    margin-bottom: 10px;
}

.right-middle input {
    background-color: #ececec;
    border: 0;
    outline: 0;
    padding: 10px 20px;
    margin-bottom: 30px;
}

.right-middle .button {
    padding: 10px 40px;
    outline: 0;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    align-self: flex-end;
    color: rgb(122, 122, 122);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #AB0012 !important;
    color: #fff;
}

.right-middle input::placeholder {
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}

.right-bottom h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .main {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .left .left-hero {
        margin-top: 20px;
    }
    .right-top {
        margin-bottom: 30px;
    }
    .right-middle {
        margin-bottom: 30px;
    }
}