/* LOGIN / RESET CSS VARIABLES */

@import url('https://fonts.googleapi.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

:root {
    --color-white: #ffffff;
    --color-light: #f0eff538;
    --color-gray-light: #86848c;
    --color-gray-dark: #56555e;
    --color-dark: #27282f;
    --color-primary: rgb(252, 116, 0);
    --color-secondary: rgb(48, 122, 190);
    --color-success: rgb(34, 202, 75);
    --color-danger: rgb(255, 67, 54);
    --color-warning: rgb(234, 181, 7);

    --color-primary-light: rgba(252, 116, 0, 0.2);
    --color-secondary-light: rgba(48, 122, 190, 0.2);
    --color-success-light: rgba(34, 202, 75, 0.2);
    --color-danger-light: rgba(255, 67, 54, 0.2);
    --color-warning-light: rgba(234, 181, 7, 0.2);

    --card-padding: 1.6rem;
    --padding-1: 1rem;
    --padding-2: 8px;

    --card-border-radius: 1.6rem;
    --border-radius-1: 1rem;
    --border-radius-2: 6px;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 12px;
}

body {
    background: var(--color-light);
    font-family: poppins, sans-serif;
    min-height: 100vh;
    color: var(--color-dark);
}

h1 {
    font-size: 2.2rem;
    color: var(--color-gray-dark);
}

h2 {
    font-size: 1.5rem;;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.86rem;
    font-weight: 500;
}

h6 {
    font-size: 7.6rem;
}

p {
    font-size: 0.86rem;
    color: var(--color-gray-dark);
}

.primary {
    color: var(--color-primary);
}

.secondary {
    color: var(--color-secondary);
}

.success {
    color: var(--color-success);
}

.danger {
    color: var(--color-danger);
}

.warning {
    color: var(--color-warning);
}

.bg-primary {
    background: var(--color-primary);
    box-shadow: 0 0.8rem 0.8rem var(--color-primary-light);
}

.bg-secondary {
    background: var(--color-secondary);
    box-shadow: 0 0.8rem 0.8rem var(--color-secondary-light);
}

.bg-success {
    background: var(--color-success);
    box-shadow: 0 0.8rem 0.8rem var(--color-success-light);
}

.bg-danger {
    background: var(--color-danger);
    box-shadow: 0 0.8rem 0.8rem var(--color-danger-light);
}

.bg-warning {
    background: var(--color-warning);
    box-shadow: 0 0.8rem 0.8rem var(--color-warning-light);
}

.bg-dark {
    background: #27282f;
    box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.2);
}

small {
    font-weight: 300;
    font-size: 0.77rem;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

section .logo img {
    position: relative;
    width: 50%;
    height: auto;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

section .img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, #fc7400, #307abe);
    z-index: 1;
    mix-blend-mode: screen;
}

section .img {
    position: relative;
    width: 50%;
    height: 100%;
}

section .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .content {
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

section .content .form {
    width: 50%;
}

section .content .form h2 {
    color: #444444;
    font-weight: 600;
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 4px solid #fc7400;
    display: inline-block;
    letter-spacing: 1px;

}

section .content .form .input {
    margin-bottom: 20px;
}

section .content .form .input span {
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
}

section .content .form .input input {
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 400;
    border: 1px solid #444444;
    font-size: 16px;
    letter-spacing: 1px;
    color: #444444;
    background: transparent;
    border-radius: 5px;
}

section .content .form .input input[type="submit"] {
    background: #fc7400;
    color: #ffffff;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

section .content .form .input input[type="submit"]:hover {
    background: #307abe;
}

section .content .form .input p {
    color: #444444;
}

section .content .form .input p a {
    color: #fc7400;
}

section .content .form .input p a:hover {
    color: #307abe;
}

/* ============= MEDIA MOBILE ============= */

@media screen and (max-width: 768px) {
    section .img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    section .content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    section .content .form {
        width: 100%;
        padding: 40px;
        background: rgb(255 255 255 / 0.9);
        margin: 50px;
    }
}

.error {
    color: var(--color-danger)!important;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.pwd-reset {
    color: var(--color-success);
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 10px;
}