﻿.full-bg {
    background-color: transparent;
    border: none;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-top: 1.5rem;
}

.full-bg-bottom {
    background: var(--pr-white);
    position: absolute;
    top: 300px;
    height: calc(100% - 300px);
    left: 0;
    width: 100%;
    z-index: -2;
}

.contact-body {
    display: flex;
    padding: 0.5rem;
    border-radius: 0.375rem;
    align-items: center;
    justify-content: center;
}

.how-body-img {
    width: auto;
    height: auto;
    max-height: 375px;
    display: flex;
    align-self: start;
    margin-bottom: 1rem;
}

.forgot-icon {
    margin-top:2px;
    margin-right:3px;
}

.full-curved-bg-svg-z {
    z-index: -3;
}

.full-curved-bg-svg {
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    position: absolute;
    top: 300px;
    transition: 0.3s;
    left: 0;
    width: 100%;
}

    .full-curved-bg-svg path {
        fill: var(--pr-white);
    }

.full_area {
    background: transparent;
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.password-strength-container {
    position: relative;
    width: 100%;
    display: inline-block;
}

.password-strength-input {
    padding-right: 100px;
}

.password-strength {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 0.375rem;
    background: transparent;
}

.weak {
    background-color: red;
    color: white;
}

.medium {
    background-color: orange;
    color: white;
}

.strong {
    background-color: green;
    color: white;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: var(--pr-light-blue-selected);
    pointer-events: none;
    background-color: var(--pr-light-blue-selected-border);
    border-color: var(--pr-light-blue-selected-border);
}

.register-error {
    border-color: rgba(191, 37, 44, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(191, 37, 44, 0.6);
    outline: 0 none;
    position: relative;
}

.register-error-div {
    display: block;
    width: 100%;
    height: auto;
    padding: 1rem;
    color: var(--pr-white);
    font-size: 0.8rem;
    background: var(--pr-status-red);
    border-radius: 0.375rem;
}

.sign-in-btn {
    width: auto;
    align-self: start;
    /*padding-right: 6rem;
    padding-left: 6rem;*/
    min-width:250px;
    white-space: nowrap;
}


@media(max-width:900px) {
    .how-body-img {
        max-height: 325px;
    }
}

@media(max-width:750px) {
    .container-full {
        flex-direction: column;
    }

    .how-body-img {
        max-height: 250px;
        align-self: center;
        margin-bottom: 1rem;
    }
}
