/*
 * Specific styles of signin component
 */
/*
 * General styles
 */
:root {
    --bg-color-black: rgba(0,0,0,1);
    --bg-color-gray: rgba(51,51,51,1);
    --bg-color-gray2: rgba(31,31,31,1);
    --bg-color-gray3: #2b2b2b;
    --p-color-gray: rgba(141,141,141,1);
    --box-color-gray: #525252;
    --table-separator-line-color: #464646;
    --btn-color-yellow: #00ff84;
    --btn-color: rgba(51,51,51,1);
    --a-bg-color: #1063ff;
    --a-bg-color-adv: #5b339d;
    --a-bg-color-basic: #575757;
    --a-bg-color-pro: #3747b0;
    --rem-pad-2: 2rem;
    font-size: 12px;
    --badge-neutral-bg: #929292;
    --badge-neutral-border-color: #CCC;
    --badge-error-bg: #FF5630;
    --badge-error-border-color: #B53D22;
    --badge-success-bg: #339F7B;
    --badge-success-border-color: #006040;
    --toggler-bg: #636363;
    --toggler-inner-bg: #EFEFEF;
    --border-radius-black: 4px;
    --bg-color-general: #414141;
    --darkgrey-50: #EFEFEF;
    --darkgrey-100: #b4b4b4;
    --darkgrey-200: #B4B4B4;
    --darkgrey-300: #929292;
    --darkgrey-700: #414141;
    --darkgrery-900: #272727;
    --bg-gradient-offline: linear-gradient(201deg, rgba(255,86,48,0.7) 0%, rgba(65,65,65,0.6867121848739496) 30%);
    --bg-gradient-online: linear-gradient(201deg, rgba(51,159,123,0.5) 0%, rgba(65,65,65,0.6867121848739496) 30%);
    --box-shadow: 4px 5px 5px -4px rgba(39,39,39,0.80);
}

/*Normalize*/

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--darkgrery-900);
    height: 60vh;
}

#bodyContainer {
    height: 100%;
    /*background: rgb(146,146,146);*/
    /*background: radial-gradient(circle, rgba(146,146,146,1) 0%, rgba(39,39,39,0.5) 40%);*/
}

a, a:hover, a:focus {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.material-symbols-outlined {
    font-size: 20px;
}

.black_container {
    font-size: 1em;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: rgb(255, 255, 255);
    /*background-color: var(--bg-color-black);*/
    background-color: transparent;
    /*border: 1px solid var(--bg-color-black);*/
    /*filter: drop-shadow(0px 3px 40px rgba(0, 0, 0, 0.161));*/
    /*border-radius: var(--border-radius-black);*/
    margin-top: 1.4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /*background: rgb(146,146,146);
    background: radial-gradient(circle, rgba(146,146,146,1) 0%, rgba(39,39,39,1) 50%);*/
}

.inner_container {
    width: 400px;
    height: min-content;
    padding: 20px 30px;
    background-color: var(--darkgrey-700);
    border-radius: var(--border-radius-black);
    /*border: 1px solid var(--darkgrey-300);*/
}

.__img{
    display:flex;
    flex-direction:row;
    width:100%;
    justify-content:center;
    align-content:center;
    padding-bottom:30px
}

.label_button {
    border-radius: var(--border-radius-black);
    background-color: var(--darkgrery-900);
    border: 1px solid var(--darkgrey-100);
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    font-weight: 700;
}

    .label_button:hover {
        border-color: var(--darkgrey-300);
        cursor: pointer;
        font-weight: 700;
        color: var(--darkgrey-300);
    }

    .label_button:active {
        color: var(--darkgrey-200);
        border-color: var(--darkgrey-300);
        font-weight: 700;
    }

    .label_button:disabled, .label_button.disabled {
        pointer-events: none;
        color: var(--darkgrey-300);
        background-color: var(--darkgrey-900);
        font-weight: 700;
    }

    .label_button.form_button {
        gap: 8px;
    }

.black_button_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

    .black_button_container .label_button {
        width: 100%;
    }

    .black_button_container .inner_button_container {
        padding-top: 10px;
        border-top: 1px solid var(--darkgrey-100);
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width:100%;
    }

        .black_button_container .inner_button_container .label_button {
            border-radius: var(--border-radius-black);
            background-color: transparent;
            border: 1px solid transparent;
            display: flex;
            padding: 8px 16px 8px 16px;
            justify-content: center;
            align-items: center;
            gap: 8px;
            align-self: stretch;
            font-weight: 400;
            white-space: nowrap;
        }

            .black_button_container .inner_button_container .label_button:hover {
                border: 1px solid var(--darkgrey-300);
                font-weight: 400;
            }

.black_form_group {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
}

     .black_form_group:not(:first-of-type) {
        padding-top: 8px;
    }

        .black_form_group input {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            padding: 6px 10px;
            border: var(--border-radius-black);
            background-color: var(--darkgrery-900)!important;
            color: var(--darkgrey-50);
            border-radius:var(--border-radius-black);
        }

    .black_form_group input:active {

        background-color: var(--darkgrery-900) !important;
    }

            .black_form_group input.error {
                border: 1px solid var(--badge-error-border-color);
            }

.sub_text {
    color: var(--darkgrey-300);
    max-width: 80%;
    font-size: 1rem;
}

.black_form_group .sub_text {
    padding-top: 6px;
    padding-left:4px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--darkgrey-50);
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #232323;
    border-color:var(--darkgrey-50);
}

    input:-webkit-autofill:focus {
        border-color:var(--darkgrey-50);
    
    }
    @media (min-device-width : 320px) and (max-device-width : 600px) {
        .inner_container {
        width: 350px;
    }
}
/*OLD*/
/*body, html {
    height: 100%;
    background-repeat: no-repeat;
    background-image: radial-gradient(rgb(226,204,195), rgb(53,57,83));
}

.card-container.card {
    max-width: 350px;
    padding: 40px 40px;
}

.btn {
    font-weight: 700;
    height: 36px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
}

/*
 * Card component
 */
/*.card {
    background-color: #ffffff;
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}*/

/*
 * Form styles
 */
/*.profile-name-card {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
    min-height: 1em;
}

.reauth-email {
    display: block;
    color: #404040;
    line-height: 2;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin #inputEmail,
.form-signin #inputPassword {
    direction: ltr;
    height: 44px;
    font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin .form-control:focus {
    border-color: rgb(104, 145, 162);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
}

.btn.btn-signin {
    background-color: rgb(104, 145, 162);
    padding: 0px;
    font-weight: 700;
    font-size: 14px;
    height: 36px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
    background-color: rgb(12, 97, 33);
}

.forgot-password {
    color: rgb(104, 145, 162);
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus{
    color: rgb(12, 97, 33);
}*/