/* Navigation Bar */
.con-navbar {
    display: flex;
    justify-content: space-between;
    padding: 2rem 4em;
    border-bottom: 1px solid gray;
}

.con-navbar .con-navleft {
    width: 25%;
    display: flex;
    align-items: center;
}

.con-navbar .con-navleft img {
    width: 9rem;
    height: 3rem;
}

.card-body{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px; /*50vh*/
    border: gray .5px solid;
    background: white;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    flex-direction: column;
}

.card-body form{
    padding: 0 6rem;
}
.form-items{
    padding-bottom: 1rem;
}

.form-button {
    /* width: 50%; */
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}
.form-forgot {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
    color: var(--blue);
}
.form-forgot:hover {
    color: var(--info);
}
.button {
    width: 50%;
    background-color: black;
}

.register-button {
    width: 50%;
    background-color: var(--teal);
    padding: 0.35rem 0;
    color: var(--gray-dark);
    margin: 0 auto;
}

.register-button:hover {
    background: linear-gradient(90deg, rgba(76,178,122,1) 29%, rgba(93,191,166,1) 100%);
}
input[type="text"] {
    font-size: unset;
    border-radius: unset;
    padding: unset;
    width: unset;
    padding: 1rem 0;
    border-radius: 0.5rem;
    text-align: center;
    text-align: left;
    padding: 10px 10px;
}

input {
    border: 0.5px solid var(--contractor-primary);
}
.card-body p {
    font-size: 12px;
    font-weight: normal;
    margin: 10px 0;
    color: #4D4D4D;
}

.form-items {
    display: flex;
    flex-direction: column;
}
.btn-submit {
    width: 100%;
    background-color: var(--contractor-primary);
    margin-top: 20px;
    padding: 7px 0;
}
.back-block {
    background-color: #2C947C;
    min-height: 300px;
    justify-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
label {
    color: #4D4D4D;
}

.login-logo{
    width: 150px;
    margin-bottom: 20px;
}

.login-logo img{
    width: 100%;
}

footer {
    position: absolute !important;
}

@media (max-aspect-ratio: 10/9) {
    footer {
        background-color: #fff;
        padding-top: 10px;
    }
    body {
        background-color: #E6F5F4;
    }
    .back-block{
        display: none
    }
    .card-body {
        width: calc(100% - 10vw);
    }
}
