:root {
    --bg: #fafafa;
    --white: #fff;
    --salmon: #ffb5a7;
    --salmon-dark: #e29f92;
    --dark: #343a40;
}


* {
    margin: 0%;
    padding: 0%;
}


@import url("https://fonts.googleapis.com/css2?family=Poppins");

#bodyLogin {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    overflow: auto;
}

h1 {
    font-weight: 700;
    letter-spacing: -1.5px;
    margin: 0 0 15px;
    color: var(--salmon-dark);
}

h1.title {
    font-size: 38px;
    line-height: 45px;
    margin: 0;
    text-shadow: 0 0 10px rgba(16, 64, 74, 0.5);
    color: var(--bg);
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
    text-shadow: 0 0 10px rgba(16, 64, 74, 0.5);
    color: var(--bg);
    font-weight: 600;
}

span {
    font-size: 14px;
    margin-top: 25px;
}

a {
    color: black;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
    transition: 0.3s ease-in-out;
}

a:hover {
    color: var(--cor04);
}

.content {
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: space-around;
}

.content .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content input {
    accent-color: var(--cor04);
    width: 12px;
    height: 12px;
}

.content label {
    font-size: 14px;
    user-select: none;
    padding-left: 5px;
}

button,
.cadastrar {
    border-radius: 10px;
    background-color: var(--salmon-dark);
    font-size: 15px;
    font-weight: 700;
    margin: 10px 0px;
    letter-spacing: 1px;
    padding: 16px 82px;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    color: var(--bg);
}

button:hover {
    letter-spacing: 3px;
}

button:active,
.cadastrar:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}

/*  
 button.ghost {
     background-color: var(--salmon-dark);
     border-radius: 10px ;
 }
  */
button.ghost img {
    position: absolute;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

button.ghost .register {
    right: 70px;
}

button.ghost .login {
    left: 70px;
}

button.ghost:hover .register {
    right: 40px;
    opacity: 1;
}

button.ghost:hover .login {
    left: 40px;
    opacity: 1;
}

form {
    background-color: var(--cor06);
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    padding: 50px;
    height: 100%;
    text-align: center;
}

input {
    background-color: var(--cor07);
    border-radius: 10px;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 90%;
    outline: none;
}

.container {
    background-color: var(--bg);
    border-radius: 25px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 500px;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.login-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.container.right-panel-active .login-container {
    transform: translateX(100%);
}

.register-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .register-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translate(-100%);
}

.overlay {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: var(--cor06);
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 1px solid var(--cor08);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    transition: 0.3s ease-in-out;
}

.social-container a:hover {
    border: 1px solid var(--cor04);
}

#formulario {
    display: none;
}


.logo {
    position: relative;
    top: 5%;
    left: 5%;
    width: 160px;
}

@media (max-width: 800px) {
    .container {
        display: none;
    }

    #formulario {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 40px;
        background-color: #fcfcfc;
        width: 300px;
        height: 450px;
        border-radius: 10px;
        box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    }

    .form-responsive {
        background-color: transparent;
        justify-content: center;
    }

    .campo {
        border: 1px solid var(--cor02);
        margin: 5px;
        padding: 5px;
        height: 30px;
        border-radius: 5px;
        margin: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }

    .input-login {
        background-color: transparent;
        border: none;
        outline: none;

    }

    .cadastrar {
        background-color: var(--salmon);
        border-radius: 10px;
        width: 100%;
        color: var(--bg);
        border: none;
        outline: none;
    }

    .login-responsive,
    .forget-password {
        background-color: var(--salmon-dark);
        transition: 1s ease;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        cursor: pointer;
        opacity: 1;
        width: 35px;
        height: 35px;
    }

    .login-responsive img,
    .forget-password img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .link-login {
        display: none;
        font-size: 13px;
        color: var(--cor08);
        transition: 1.5s ease;
        text-decoration: none;
    }

    .login-responsive {
        position: fixed;
        left: -19%;
        transform: translateX(82%);
    }

    .forget-password {
        position: fixed;
        left: -19%;
        top: 60%;
        transform: translateX(82%);
    }

    #expandir.expanded,
    #expandir2.expanded {
        width: 150px;
        height: 35px;
        padding: 5px;
    }

    #expandir.expanded .link-login,
    #expandir2.expanded .link-login {
        display: inline;
    }

    #expandir.expanded .link-login:hover,
    #expandir2.expanded .link-login {
        color: var(--cor08);
    }


    #expandir.expanded img,
    #expandir2.expanded img {
        display: none;
    }


    .form-responsive {
        padding: 0px 50px 0px 50px;
    }

    .logo {
        width: 180px;
        left: 0%;
    }
}