﻿:root {
    /* ===== Colors ===== */
    --body-color: #e4e9f7;
    --sidebar-color: #fff;
    --primary-color: #0275d8;
    --primary-color-light: #f6f5ff;
    --toggle-color: #ddd;
    --text-color: #707070;
    --table-warning: #DB7093;
    --overlay-color: rgba(115, 115, 115, 0.9);
    --radio-color: #000;
    --background-color: #fff;
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}

body {
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-05);
}

::selection {
    background-color: var(--primary-color);
    color: #fff;
}

body.dark {
    --body-color: #18191a;
    --sidebar-color: #242526;
    --primary-color: #3a3b3c;
    --primary-color-light: #3a3b3c;
    --toggle-color: #adabab;
    --text-color: #ccc;
    --table-warning: #ca3364;
    --overlay-color: rgba(0,0,0,0.9);
    --radio-color: #6f42c1;
    --background-color: #000;
}

/* Page */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: sans-serif;
}

/* Background */
.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

    .container-login100::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: var(--overlay-color);
    }

.wrap-login100 {
    width: 500px;
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 55px 37px 55px;
    background: var(--body-color);
    border: 1px solid rgba(1,84,66, 0.9);
    ;
}

/* Form */
.login100-form-title {
    font-family: Poppins-Medium;
    font-size: 30px;
    color: var(--text-color);
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    display: block;
    padding-bottom: 50px;
}

/* Input */
.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 30px;
}

.input100 {
    font-family: Poppins-Regular;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px 0 38px;
    border: none;
}

    .input100::placeholder {
        color: var(--text-color);
    }

    .input100:focus {
        outline: none;
    }

        .input100:focus::placeholder {
            color: transparent;
        }

/* Button */
button {
    outline: none !important;
    border: none;
    background: transparent;
    width: 100%;
}

    button:hover {
        cursor: pointer;
    }

.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 8%;
}

.login100-form-btn {
    font-family: Poppins-Medium;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 40px;
    background-color: var(--primary-color);
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .login100-form-btn::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        background-color: transparent;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 1;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

    .login100-form-btn:hover:before {
        opacity: 0;
    }

@media (max-width: 576px) {
    .wrap-login100 {
        padding: 55px 15px 37px 15px;
        background-color: white;
    }
}

/* Error message */
.error-msg {
    padding-top: 25px;
    text-align: center;
    color: red;
}

/* Logo */
.logo {
    width: 12rem;
}

.filter-options {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    justify-content: space-between;
}

.filter-item {
    width: 30%;
    margin-bottom: 20px;
}

.filter-item-tags {
    width: 50%;
}

label {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

input, select {
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-bottom: 20px;
}
