* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
    color: white;
}

select,
select option {
    color: black;
}

body {
    background-color: #000;
}

a {
    color: white !important;
    text-decoration: none !important;
    font-weight: bold;
}

header {
    height: 80px;
}

main {
    height: calc(100vh - 80px);
    padding: 12px;
    overflow: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col {
    flex: 1;
    padding: 0 10px;
}

form {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input {
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: black;
    margin-bottom: 10px;
}

button[type="submit"] {
    background: #ff0000;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.login_form_data {
    padding: 12px;
}

.modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff20;
    backdrop-filter: blur(7px);
    /* display: none; */
    opacity: 0;
    z-index: -1;
    overflow-y: auto !important;
    transition: all 0.3s ease-out;
}

.modal-wrap.show {
    /* display: block; */
    opacity: 1;
    z-index: 1;
}

.modal-wrap.show .modal .modal-content {
    margin-bottom: 0;
}

.modal {
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #000;
    padding: 50px;
    border-radius: 8px;
    font-size: 20px !important;
    position: relative;
    margin-bottom: 100px;
    transition: all 1s ease-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.close-modal {
    background: red;
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 800;
    position: absolute;
    top: 12px;
    right: 12px;
}

.modal-content label {
    font-size: 16px;
    margin: 0 0 5px 0px;
    display: block;
}

.modal-content button {
    font-size: 17px;
}

.input_cont {
    width: 100%;
}

.input_cont > input,
.input_cont > select {
    height: 40px;
    width: 100%;
    border-radius: 5px;
}

.input_cont > label {
    font-size: 16px;
}

#login {
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: 100vh;
}

.flex_cont {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.flex_half {
    width: 100%;
    justify-content: flex-start;
}

.slides {
    margin-left: 581px;
    width: 70%;
    overflow: hidden;
    animation-name: fade;
    animation-duration: 1s;
    display: none;
}

.slider {
    width: 100%;
    height: 100%;
    clip-path: none;
    position: relative;
    opacity: 0.7;
}

.slide {
    width: 100%;
    height: 100%;
    transition: all 2s ease-in-out;
    position: absolute;
    opacity: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade {
    opacity: 1;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#dot {
    margin: 0 auto;
    text-align: center;
}

.dot {
    display: inline-block;
    border-radius: 50%;
    background: #d3d3d3;
    padding: 8px;
    margin: 10px 5px;
}

#login-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-form {
    margin: auto;
    width: 320px;
}

#login-form img {
    width: auto;
}

.login_form_data .form-group {
    height: 40px;
    border: none !important;
    border-radius: 5px;
    background: #f3f3f3;
    padding: 0 25px;
    color: rgba(36, 35, 38, 0.37);
    margin: 0 0 20px;
}

.login_form_data .form-actions.buttons {
    flex-direction: row;
}

.login_form_data .form-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.login_form_data .form-action {
    width: 100%;
    background: #ff0000;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    height: 45px;
    font-size: 14px;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    margin: 0 0px 18px 0;
}

.login_form_data .form-action:hover {
    transform: scale(1.02);
}

.login_form_data .form-action.register {
    background: transparent;
    border: 1px solid #fff;
    color: white;
    margin-left: 4px;
}

.login_form_data .form-actions .remember,
.login_form_data .form-actions .forgot,
.login_form_data .form-actions .first {
    font-size: 12px;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 6px;
}

.login_form_data .form-actions .remember {
    margin-bottom: 18px;
}

.login_form_data .form-actions .extra {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.check {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: bold;
}

/* Hide the browser's default checkbox */
.check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    position: relative;
    margin-right: 12px;
}

.check:hover input ~ .checkmark {
    background-color: white;
}

.check input:checked ~ .checkmark {
    background-color: white;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check input:checked ~ .checkmark:after {
    display: block;
}

.check .checkmark:after {
    width: 16px;
    height: 16px;
    background-color: red;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#social-buttons {
    /* padding: 12px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    /* margin: 24px auto; */
}

#social-buttons .social-button {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    border-radius: 6px;
    border: 1px solid white;
    margin: 0 0 20px;
    /* background-color: white; */
}

#social-buttons .social-button.social-google {
    border-color: #ea4235;
}

#social-buttons .social-button.social-google span {
    color: #ea4235;
}

#social-buttons .social-button.social-facebook {
    border-color: #1878f3;
}

#social-buttons .social-button.social-facebook span {
    color: #1878f3;
}

#social-buttons .social-button img {
    width: auto;
    height: 100%;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    margin-right: 16px;
}

#social-buttons .social-button span {
    font-size: 14px;
}

header img {
    width: 140px;
}

.users {
    margin: 12px 12 px;
    border-radius: 4px;
    background: gray;
    padding: 12px;
}

.users p.title {
    font-size: 24px;
    font-weight: bold;
}

.users table {
    padding: 12px;
    width: 100%;
}

.users table tr {
    padding: 8px 0;
    display: flex;
    width: 100%;
}

.users table thead {
    display: none;
}

.user-buttons {
    margin-top: 16px !important;
}

.users table td {
    flex: 1;
    margin: 2px 0px;
}

.btn {
    outline: none;
    border-radius: 4px;
    border: none;
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover {
    background-color: #61daff;
}

.btn.btn-primary {
    background-color: #11b8fa;
}

.btn.btn-danger:hover {
    background-color: #ff4e6b;
}

.btn.btn-danger {
    background-color: #ff002a;
}

.btn.btn-success:hover {
    background-color: #64ffd1;
}

.btn.btn-success {
    background-color: #00ffb3;
}

header .header {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    padding: 8px 8px;
}

.user-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid black;
}

@media (min-width: 1110px) {
    .slider {
        clip-path: polygon(36.5% 0%, 100% 0%, 100% 100%, 50.5% 100%);
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    .modal-content {
        width: 70%;
    }

    .close-modal {
        width: 60px;
        height: 60px;
        top: -24px;
        right: -24px;
    }

    #login-form {
        width: 400px;
    }

    header .header {
        padding: 8px 8px;
    }

    header img {
        width: auto;
    }

    .users {
        margin: 32px 48px;
        padding: 24px;
    }

    .users table thead {
        display: block;
    }

    .users table tr {
        padding: 12px 0;
    }

    .user-row {
        flex-direction: row;
    }
}

@media (min-width: 1110px) {
    #login-form {
        margin-left: 5.5vw;
    }
}

@media (min-width: 1024px) {
    .modal {
        height: 100%;
    }

    .flex_cont {
        flex-direction: row;
    }

    .flex_half {
        width: 50%;
    }

    .login_form_data .form-actions {
        flex-direction: row;
    }

    .login_form_data .form-actions.second {
        flex-direction: row;
        justify-content: space-between;
    }

    .login_form_data .form-group,
    #social-buttons .social-button {
        height: 45px;
    }

    .login_form_data .form-action {
        height: 50px;
        font-size: 16px;
    }

    .login_form_data .form-action.register {
        margin-left: 24px;
    }

    .login_form_data .form-actions .extra {
        align-items: end;
    }

    .login_form_data .form-actions .remember,
    .login_form_data .form-actions .forgot,
    .login_form_data .form-actions .first {
        font-size: 16px;
    }

    .login_form_data .form-actions .forgot span,
    .login_form_data .form-actions .first span {
        font-size: 14px;
    }
}

@media (min-width: 1280px) {
    #login-form {
        margin-left: 7vw;
        width: 395px;
    }

    .input_cont > input,
    .input_cont > select {
        height: 45px;
        width: 100%;
        border-radius: 5px;
    }

    .input_cont > label {
        font-size: 18px;
    }

    .login_form_data .form-group,
    #social-buttons .social-button {
        height: 50px;
    }
}

@media (min-width: 1366px) {
    .login_form_data .form-group,
    #social-buttons .social-button {
        height: 60px;
    }

    .login_form_data .form-action {
        height: 60px;
        font-size: 20px;
    }

    .checkmark {
        height: 24px;
        width: 24px;
    }

    #login-form {
        width: 475px;
    }

    .login_form_data .form-actions .remember,
    .login_form_data .form-actions .forgot,
    .login_form_data .form-actions .first {
        font-size: 18px;
    }

    .login_form_data .form-actions .forgot span,
    .login_form_data .form-actions .first span {
        font-size: 16px;
    }
}
