@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}
body {
    padding: 5rem;
}
.btn-primary {
    background-color: #e74f4f !important;
    border-color: #ff6b6b !important;
}
.btn-primary:hover {
    background-color: #ff6b6b !important;
}
.with-bg {
    background: url('../img/bg.jpg');
}
#login-section {
    width: 100%;
    display: flex;
    margin: 0 auto;
    max-width: 800px;
}
#section-left {
    width: 40%;
    background-color: #e5e7f1;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
#section-right {
    width: 60%;
    padding: 1.5rem;
    background-color: #FFF;
    border: 1.5px solid #e8f0fe;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
#form-login {
    padding: 2rem;
}
#title {
    font-size: 1.8rem;
    color: #ec3e81;
}
#subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}
.brand-title {
    font-size: 1.8rem;
}

@media screen and (max-width: 1440px) {
    #login-section {
        max-width: 700px;
    }
    #form-login {
        padding: 1.6rem;
    }
    #title {
        font-size: 1.2rem;
        color: #ec3e81;
    }
    #subtitle {
        font-size: 0.8rem;
        margin-bottom: 2rem !important;
    }
    .form-control, label, .btn {
        font-size: 0.775rem;
    }
    .alert{
        font-size: 0.65rem;
    }
    .alert-heading {
        font-size:0.9rem;
        margin-bottom: 0;
    }
}