@import 'cookies.css';
@import 'vars.css';

:root{
    --container-radius: 15px;
}

body {
    font-size: 1em;
    font-family: var(--default-font);
    background: rgb(10, 211, 95);
    background: var(--bg-gradient);
    /* https://cssgradient.io/ */
    background-attachment: fixed;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.user_card {
    height: 400px;
    width: 350px;
    margin-top: auto;
    margin-bottom: auto;
    background: var(--project-tab-bg);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: var(--container-radius);
}

.admin {
    background: repeating-linear-gradient(-45deg, var(--design-tab-bg), var(--design-tab-bg) 20px, var(--project-tab-bg) 20px, var(--project-tab-bg) 40px) !important;
}

.brand_logo_container {
    position: absolute;
    height: 170px;
    width: 190px;
    top: -75px;
    border-radius: var(--container-radius);
    background: var(--grad-bg-light);
    padding: 10px;
    text-align: center;
}

.brand_logo {
    height: 150px;
    width: 170px;
    border-radius: var(--container-radius);
}

.form_container {
    margin-top: 100px;
}

.login_btn {
    width: 100%;
    background: var(--grad-bg-dark) !important;
    color: white !important;
}

.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.login_container {
    padding: 0 2rem;
}

.input-group-text {
    background: var(--grad-bg-dark) !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
    height: 42px;
}

.input_user, .input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--grad-bg-dark) !important;
}

.link {
    cursor: pointer;
}

.hidden {
    display: none;
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer > a {
    color:inherit;
}

#logoDiv {
    position: relative;
    float: left;
}

#adminLogoHoverDiv {
    /* for stacking admin overlay on bizprofile logo*/
    position: relative;
    top: -100px;
    z-index: 2000;
}