@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");

:root {
    --primary-color: #0a438b;
    --danger-color: #c30e0e;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000;
}
main {
    height: 100vh;
    width: 100%;
}
.auth-page {
    height: 100%;
    padding: 0;
    margin: 0;
}
.left-sidebar {
    background-image: url(../images/bg-admin.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
.right-content {
    position: relative;
}
.form-content {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -30%);
    width: 50%;
    max-width: 700px;
}
.logo-img {
    text-align: center;
}
.logo-name {
    font-size: 20px;
    font-weight: 500;
}
h1 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
}
label {
    font-size: 16px;
    font-weight: 600;
}
a {
    color: #000;
    font-weight: 400;
    text-decoration-line: underline;
}
.text-primary {
    color: #0a438b !important;
}
.form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    height: 50px;
}
.btn {
    border-radius: 10px;
}
.btn-submit {
    background: #0a438b;
    color: white;
    width: 100%;
    height: 50px;
    font-weight: 700;
}
h2 {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
}
.form-label.required::after {
    content: " *";
    color: var(--bs-red);
}

/* 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: unset;
    }
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
}
.btn-outline-primary:hover,
.btn-outline-primary:active {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-primary {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}
.text-primary {
    color: var(--primary-color) !important;
}
.btn {
    padding: 0.75rem 1.5rem;
}
