/*
BESCHREIBUNG
    Created on : 05.12.2021
    Author     : 1992r
*/

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--bggrey) !important;
}

.user_card {
    height: 400px;
    width: 350px;
    margin-top: auto;
    margin-bottom: auto;
    background: var(--white);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 5px;

}
.runder_container {
    position: absolute;
    height: 170px;
    width: 170px;
    top: -75px;
    border-radius: 50%;
    background: var(--primary);
    padding: 10px;
    text-align: center;
}
.logo {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 2px solid white;
}
.form_container {
    margin-top: 100px;
}
.login_btn {
    width: 100%;
    background: var(--interactive);
    color: var(--text_light);
}

.login_btn:hover {
    width: 100%;
    color: var(--interactive);
    background: var(--text_light);
}

.login_btn:focus {
    box-shadow: none;
    outline: 0px;
}
.login_container {
    padding: 0 2rem;
}
.input-group-text {
    background: var(--interactive);
    color:  var(--text_light);
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.input_user,
.input_pass:focus {
    box-shadow: none;
    outline: 0px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--interactive) !important;
}