@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 {
    --main-color: #8cc14a;
    --main-second-color: #9c0b0b;
    --secondary-color: #d9d9d9;
    --border-color: #ced4da;
}

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: 50%;
    transform: translate(-50%, -50%);
    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;
}
.form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    height: 50px;
}
.btn {
    border-radius: 10px;
}
.btn-submit {
    background: #c30e0e;
    width: 100%;
    height: 50px;
    font-weight: 700;
}
h2 {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
}

.btn-danger {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-danger:active:focus,
.btn-danger:focus {
    box-shadow: 0 0 0 0.25rem rgb(18 51 94 / 50%);
}

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