:root {
    --orange-color: #ff6d00;
}

body {
}

.authentification-section {
    background: url(/img/authentification_background.jpg);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    display: flex;
}

.authentification-section .left-side {
    width: 60%;
}

.authentification-section .right-side {
    width: 40%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    -webkit-box-shadow: 15px 0px 10px 20px rgb(0 0 0 / 51%);
    box-shadow: 15px 0px 10px 20px rgb(0 0 0 / 51%);
}

/**
FORM SETUP
 */
.authentification-section .right-side form {
    width: 90%;
    margin: auto;
}

.authentification-section .right-side form label {
    color: var(--orange-color);
}


.authentification-section .right-side form label.error {
    color: rgba(255, 255, 255);
    margin-top: 0.5rem;
}

.authentification-section .right-side .acredi-input {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: 0 3px 2px -2px rgba(128, 128, 128, 0.45);
    box-shadow: 0 3px 2px -2px rgba(128, 128, 128, 0.45);
    padding-left: 0;
    transition: box-shadow 0.5s;
    color: white;
}

.authentification-section .right-side .acredi-input:focus-visible{
    border: none;
    outline: none;
}

.authentification-section .right-side .acredi-input:focus {
    -webkit-box-shadow: 0 3px 2px -2px var(--orange-color);
    box-shadow: 0 3px 2px -2px var(--orange-color);
}

.authentification-section .right-side .acredi-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #969696;
    opacity: 1; /* Firefox */
}

.authentification-section .right-side .acredi-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #969696;
}

.authentification-section .right-side .acredi-input::-ms-input-placeholder { /* Microsoft Edge */
    color: #969696;
}


.authentification-section .right-side form .authentification-btn {
    background: none;
    outline: none;
    border: none;
    background: white;
    color: black;
    padding: 1rem 1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    font-size: 1.4rem;
    transition: box-shadow 0.5s;
}

.authentification-section .right-side form .authentification-btn:hover {
    -webkit-box-shadow: 0px 0px 13px -2px var(--orange-color);
    box-shadow: 0px 0px 13px -2px var(--orange-color);
}

.forgot-password {
    font-size: 1.2rem;
    color: var(--orange-color);
}

.forgot-password:hover {
    color: var(--orange-color);
    text-decoration: underline;
}

/**
TITLE
 */
.authentification-section .right-side h1 {
    color: white;
    font-weight: bold;
    padding-bottom: 5rem;
}

.authentification-section .left-side {
    position: relative;
}

.authentification-section .left-side .left-content {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shadow-div{
    background: rgba(0, 0, 0, 0.52);
    padding: 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem !important;
    font-weight: 500;
}

.shadow-div p {
    font-size: 1.1rem !important;
    font-weight: 500;
    line-height: 1.2 !important;
}

ol li{
    font-size: 1.1rem !important;
    font-weight: 500;
    color: white;
}

.authentification-section .left-side .left-content .acreditari-text {
    margin-bottom: 2rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    -moz-text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    -webkit-text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
}

.authentification-section .left-side h1 {
    color: white;
    font-size: 4rem;
    font-weight: bold;
}

.authentification-section .left-side a {
    color: var(--orange-color);
    font-size: 1.3rem;
    margin-top: 10px;
}

.authentification-section .left-side a:hover {
    text-decoration: underline;
}

.authentification-section .left-side p {
    color: white;
    font-size: 1.3rem;
}

h2{
    color: white;
    text-align: center;
}

/**
CHECKBOX CSS
 */

.check-group {
    counter-reset: total;
    counter-reset: checked;
}

.check-group > * + * {
    margin-top: 0.75rem;
}

.check-group .checkbox {
    counter-increment: total;
}

.check-group input[type=checkbox]:checked {
    counter-increment: checked;
}

.check-group__result {
    font-weight: bold;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.check-group__result:after {
    content: counter(checked) " / " counter(total);
    padding-left: 1ch;
}

.checkbox {
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.checkbox__input {
    position: absolute;
    width: 1.375em;
    height: 1.375em;
    opacity: 0;
    cursor: pointer;
}

.checkbox__input:checked + .checkbox__icon .tick {
    stroke-dashoffset: 0;
}

.checkbox__icon {
    width: 1.375em;
    height: 1.375em;
    flex-shrink: 0;
    overflow: visible;
}

.checkbox__icon .tick {
    stroke-dasharray: 20px;
    stroke-dashoffset: 20px;
    transition: stroke-dashoffset 0.2s ease-out;
}

.checkbox__label {
    margin-left: 0.5em;
}


select option{
    color: black;
}

/*
REGISTER
*/

.steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.steps .step {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
    aspect-ratio: 1;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.steps .delimiter {
    width: calc(100% + 2px);
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 50%;
    transform: translate(0, -50%);
    margin-left: -1px;
}

.steps .step.active {
    border-color: var(--orange-color);
    color: var(--orange-color);
}

.steps .delimiter.active {
    background: var(--orange-color);
}

.terms-checkbox {
    line-height: 1.1;
    align-items: flex-start;
}

.terms-checkbox .checkbox__label {
    margin-top: -0.3rem;
}

.terms-checkbox a {
    font-size: 1.2rem;
    text-decoration: underline;
}

.has-icon-right i {
    font-size: 1.5rem;
}

.desktop a {
    font-size: 1rem !important;
    color: var(--orange-color) !important;
}

.right-side p {
    color: white;
    font-size: 1.2rem;
}

.authentification-section.register .left-side .left-content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    padding-left: 28%;
    padding-right: 10%;
    transform: translate(-50%, -50%);
}


.authentification-section.register .register-acreditari-text-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.authentification-section.register .left-side .left-content .acreditari-text {
    font-size: 8rem;
}


.loading-section {
    position: absolute;
    z-index: 9999;
    font-size: 3rem;
    color: var(--orange-color);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-box-shadow: 15px 0px 10px 20px rgb(0 0 0 / 51%);
    box-shadow: 15px 0px 10px 20px rgb(0 0 0 / 51%);
    width: 40%;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}

.loading-section i {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.resent-container{
    font-size: 1.2rem;
    color: var(--orange-color);
}

.resent-container a{
    font-size: 1.2rem;
    color: var(--orange-color);
    text-decoration: underline;
}

.resent-container a:hover{
    color: var(--orange-color);
    opacity: 0.8;
}
