﻿html, body {
    overflow: hidden;
    height: 100%;
    margin: 0;
}


body{
    font-family: 'Montserrat', sans-serif !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.clickable {
    cursor: pointer;
    opacity:1;
}
    .clickable:hover {
        opacity: 0.85!important;
    }

#login-background {
    /* background-image: url("../images/bg_home_drk.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#gray-background-loader {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000ba;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

#white-login-bg {
    padding: 10px;
    width: 300px;
    height: auto;
    background: white;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.2); /* thin border */
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* light shadow */
    opacity: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}


#logo-panel {
    max-width: 65%;
    width: auto;
    height: auto;
}

#gray-login-rectangle {
    width: 97%;
    height: 70%;
    opacity: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

#login-text {
    width: 100%;
    height: 12%;
    font-size: 15px;
    font-family: var(--font-4);
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 5px;
}

#login-input-header-text {
    width: 100%;
    font-size: 15px;
    font-family: var(--font-4);
    display: flex;
    text-align: left;
    justify-content: left;
    margin-top: 15px;
    margin-left: 20px;
}

#email-box {
    width: 80%;
    height: 30px;
    background-color: white;
    background-repeat: no-repeat;
    border-radius: 9px;
    opacity: 1;
    padding: 0;
    border: 1px solid black;
    text-align: center;
    color: lightgray;
    font-size: 13px;
    display: flex;
    justify-content: center;
}

#username-input {
    width: 90%;
    height: 90%;
    border: 0;
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: hidden;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.25px;
    outline: none;
    font-family: var(--font-3);
}

#password-box {
    width: 80%;
    height: 30px;
    background-color: white;
    background-repeat: no-repeat;
    border-radius: 9px;
    opacity: 1;
    padding: 0;
    border: 1px solid black;
    text-align: center;
    color: lightgray;
    font-size: 13px;
    display: flex;
    justify-content: center;
    letter-spacing: 0.5px;
}

#password-input {
    width: 90%;
    height: 90%;
    border: 0;
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: hidden;
    text-align: center;
    font-size: 13px;
    outline: none;
    font-family: var(--font-3);
}

#login-button {
    width: 85%;
    height: 40px;
    background-color: #6ABDFF;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.2); /* thin border */
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* light shadow */
    opacity: 1;
    padding: 0;
    text-align: center;
    color: white;
    font-size: 19px;
    font-family: var(--font-4);
    cursor: pointer;
    margin-top: 6%;
    transition: transform 0.3s ease;
}

#login-button:hover {
    transform: scale(1.025);
}

#forgot-password {
    width: 75%;
    height: 5%;
    font-size: 13px;
    font-family: var(--font-3);
    display: flex;
    justify-content: center;
    margin-top: 3%;
    text-decoration: none;
}

#no-account {
    width: 100%;
    height: 5%;
    font-size: 13px;
    font-family: var(--font-3);
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

#signup-button {
    width: 80%;
    height: 35px;
    background-color: gray;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.2); /* thin border */
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* light shadow */
    opacity: 1;
    padding: 0;
    text-align: center;
    color: white;
    font-size: 19px;
    font-family: var(--font-4);
    cursor: pointer;
    margin-bottom: 10px;
}

#signup-button:hover {
    transform: scale(1.025);
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #6ABDFF;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}