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

:root {
    --primary-color: #3b7acc;
    --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 {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 35%;
    flex: 0 0 auto;
}
.right-content {
    position: relative;
}
.form-content {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -30%);
    width: 50%;
}
.logo-img {
    text-align: center;
}
.logo-name {
    font-size: 20px;
    font-weight: 500;
}
h1 {
    font-size: 32px;
    font-weight: 600;
}
label {
    font-size: 16px;
    font-weight: 600;
}
a {
    color: #000;
    font-weight: 400;
    text-decoration-line: underline;
}
.form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    height: 50px;
}
.btn {
    border-radius: 10px;
}
.btn-submit {
    background: var(--primary-color);
    width: 100%;
    height: 50px;
    font-weight: 700;
}
h2 {
    font-size: 16px;
    font-weight: 400;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-brand {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
}
.w-30 {
    flex: 0 0 auto;
    width: 30%;
}
@media (min-width: 576px) {
    .w-sm-65 {
        flex: 0 0 auto;
        width: 65% !important;
    }
}
.title-two-facter {
    color: var(--primary-color);
}

.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;
}
