@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css");
@import url("//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css");

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000;
}
main {
    height: 100vh;
    width: 100%;
}
.auth-page {
    height: 100%;
    padding: 0;
    margin: 0;
}

.right-content {
    position: relative;
}
.form-content {
    background-image: url(../images/bg_login.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -30%);
    width: 100%;
}
.logo-img {
    text-align: center;
}
.logo-name {
    font-size: 20px;
    font-weight: 500;
}
h1 {
    font-size: 36px;
    font-weight: 600;
}
label {
    font-size: 14px;
    font-weight: 600;
}
a {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    text-decoration-line: underline;
}
.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    height: 40px;
    font-size: 14px;
}
.btn {
    border-radius: 5px;
}
.btn-submit {
    background: #ee4444;
    width: 100%;
    height: 40px;
    font-weight: 700;
}
h2 {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
}

/* Custom toastr */
.toast-top-right {
    top: 65px;
    right: 12px;
    border-radius: 10px;
}
#toast-container > .toast-success {
    background-image: url(../images/toastr-success.png) !important;
}
#toast-container > div {
    padding: 15px 15px 15px 60px;
}
.toast-title {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.toast-message {
    color: #535353;
    font-size: 12px;
    font-weight: 500;
}
.toast-error .toast-message {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .form-content {
        width: 100%;
    }
}
