.login-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-div {
    border: 3px solid green;
    /*width: 50%;
  height: 50%;*/
}

/* Theme Dropdown Start */
.dropdown-chosen-item {
    border: 1px solid #000000;
}

.dropbtn {
    background-color: #3498db;
    color: white;
    padding: 0px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover,
.dropbtn:focus {
    background-color: #2980b9;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 5px;
    right: 0px;
}

.dropdown-content span {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropdown-active-item {
    background-color: black;
    border-color: blue;
}

.dropdown span:hover {
    background-color: #ddd;
}

.show {
    display: block;
}
/* Theme Dropdown End */

/* Themes */
.dark-mode {
    background-color: black;
    color: white;
}

.pink-mode {
    background-color: #ffc0cb;
    color: black;
}
/* Themes End */

body {
    background-color: white;
    color: black;
}

.hidden-element {
    display: none !important;
}

.text-area-label {
    font-size: 14px;
    color: #4285f4;
}

.button-margins {
    margin-left: 10px;
    margin-right: 10px;
}

.out-of-scope-span {
    color: darkgrey;
}

/* Top Right Username */
.tr-container {
    position: relative;
}

.topright {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 18px;
}

img {
    width: 100%;
    height: auto;
    opacity: 0.3;
}
/* Top Right Username end */

.radio {
    display: inline-block;
}

.dropdown-label {
    position: absolute;
    top: -20px;
    font-size: 14px;
    color: #4285f4;
}

.input-group-inline-100px {
    display: inline-block;
    width: 100px;
}

.input-group-inline-300px {
    display: inline-block;
    width: 300px;
}

.input-group-inline-150px {
    display: inline-block;
    width: 150px;
}

.input-group-inline-autosize {
    display: inline-block;
}
.bar-autosize {
    position: relative;
    display: block;
}

.width-300px {
    display: block;
    width: 300px;
}

.width-100px {
    display: block;
    width: 100px;
}
.width-150px {
    display: block;
    width: 150px;
}

.input-label-event-fix {
    pointer-events: none;
}

.input-type-padding-fix {
    padding: 10px 10px 10px 5px;
}

.input-group {
    position: relative;
    margin: 20px 0 20px;
}

input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    /*display: block;
  width: 300px;*/
    border: none;
    border-bottom: 1px solid #757575;
}

input:focus {
    outline: none;
}

.input-text-label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    /*pointer-events: none;*/
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.input-text-label-small {
    color: #999;
    font-size: 10px;
    font-weight: normal;
    position: absolute;
    /*pointer-events: none;*/
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.label-disabled {
    top: -20px;
    font-size: 14px;
    color: #b2beb5;
}

input:focus ~ label,
input:valid ~ label {
    top: -20px;
    font-size: 14px;
    color: #4285f4;
}

input:focus ~ .label-small,
input:valid ~ .label-small {
    top: -20px;
    font-size: 10px;
    color: #4285f4;
}

.bar {
    position: relative;
    display: block;
    width: 300px;
}

.bar-100px {
    position: relative;
    display: block;
    width: 100px;
}

.bar-150px {
    position: relative;
    display: block;
    width: 150px;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #4285f4;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

input:focus ~ .bar:before,
input:focus ~ .bar:after {
    width: 50%;
}

.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.highlight-small {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
    font-size: 10px;
}

input:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* animations */
@-webkit-keyframes inputHighlighter {
    from {
        background: #4285f4;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@-moz-keyframes inputHighlighter {
    from {
        background: #4285f4;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@keyframes inputHighlighter {
    from {
        background: #4285f4;
    }
    to {
        width: 0;
        background: transparent;
    }
}
/* Material checkbox START */
.pure-material-checkbox-14px {
    z-index: 0;
    position: relative;
    display: inline-block;
    /*color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);*/
    font-family: var(
        --pure-material-font,
        'Roboto',
        'Segoe UI',
        BlinkMacSystemFont,
        system-ui,
        -apple-system
    );
    font-size: 14px;
    line-height: 1.5;
}

.pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    /* color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);*/
    font-family: var(
        --pure-material-font,
        'Roboto',
        'Segoe UI',
        BlinkMacSystemFont,
        system-ui,
        -apple-system
    );
    font-size: 16px;
    line-height: 1.5;
}

/* Input */
.pure-material-checkbox > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

/* Span */
.pure-material-checkbox > span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

/* Box */
.pure-material-checkbox > span::before {
    content: '';
    display: inline-block;
    box-sizing: border-box;
    margin: 3px 11px 3px 1px;
    border: solid 2px; /* Safari */
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}

/* Checkmark */
.pure-material-checkbox > span::after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 1px;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

/* Checked, Indeterminate */
.pure-material-checkbox > input:checked,
.pure-material-checkbox > input:indeterminate {
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked + span::before,
.pure-material-checkbox > input:indeterminate + span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked + span::after,
.pure-material-checkbox > input:indeterminate + span::after {
    border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.pure-material-checkbox > input:indeterminate + span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

/* Hover, Focus */
.pure-material-checkbox:hover > input {
    opacity: 0.04;
}

.pure-material-checkbox > input:focus {
    opacity: 0.12;
}

.pure-material-checkbox:hover > input:focus {
    opacity: 0.16;
}

/* Active */
.pure-material-checkbox > input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.pure-material-checkbox > input:active + span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked:active + span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}

/* Disabled */
.pure-material-checkbox > input:disabled {
    opacity: 0;
}

.pure-material-checkbox > input:disabled + span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.pure-material-checkbox > input:disabled + span::before {
    border-color: currentColor;
}

.pure-material-checkbox > input:checked:disabled + span::before,
.pure-material-checkbox > input:indeterminate:disabled + span::before {
    border-color: transparent;
    background-color: currentColor;
}
