﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --bendy-azul1: #104b77;
    --bendy-azul2: #2974b7;
    --bendy-verde: #2AB5B5;
    --bendy-cinza1: #333333;
    --bendy-cinza2: #808080;
    --bendy-cinza3: #CCCCCC;
}

body {
    overflow-y: hidden;
    font-family: 'Montserrat', sans-serif;
    position: fixed;
}


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

.login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100vh;
    width: 100vw;
}

.login-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}


@media screen and (max-width: 767px) {
    .login-left {
        flex: 1 1 auto;
    }
}


.login-logo {
    background-image: url(/assets/images/logo/bendy-logo-05.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    margin: 30px;
    width: 100px;
}

@media (max-width: 991px) {
    .login-logo {
        position: unset;
        width: 250px;
    }
}

.login-form {
    width: 350px;
    z-index: 10;
}

@media screen and (max-width: 575px) {
    .login-form {
        width: 100%;
    }
}

::placeholder {
    color: lightgray;
}

.login-form div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.login-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    background-color: var(--bendy-azul2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

    .login-right .background-image {
        background-image: url(/assets/images/logo/bendy-logo-02.svg);
        background-repeat: no-repeat;
        height: 120px;
        background-size: contain;
        width: 100%;
        background-position: center;
    }

@media (max-width: 991px) {
    .login-right {
        display: none;
    }
}

.login-text {
    width: 400px;
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: 15px;
    width: 100%;
}

.login-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    font-size: 16px;
    flex-direction: row !important;
    margin: 10px 0 !important;
}

    .login-error button {
        background-color: transparent;
        border: 0;
        color: #721c24;
        font-size: 20px;
        margin-left: 10px;
    }

input[type="text"],
input[type="email"],
input[type="nome"],
select[type="tipo"],
input[type="confirmpassword"],
input[type="documento"],
input[type="telefone"],
input[type="password"] {
    height: 45px;
    width: 100%;
    border: 0px;
    border-bottom: 1px solid #ccc;
    box-shadow: unset;
    outline: 0;
    padding: 10px;
    transition: 300ms border-color ease-in-out;
    -webkit-appearance: none;
    border-radius: 0px;
    font-size: 16px;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="nome"]:focus,
    input[type="confirmpassword"]:focus,
    input[type="documento"]:focus,
    select[type="tipo"]:focus,
    input[type="telefone"]:focus,
    input[type="password"]:focus {
        border-bottom: 1px solid #29abe2;
        transition: 300ms border-color ease-in-out;
    }

.form-group.password {
    position: relative;
    margin-top: 20px;
}

    .form-group.password button.eye-icon {
        height: 20px;
        width: 20px;
        position: absolute;
        right: 0;
        bottom: 0;
        outline: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        margin-bottom: 10px;
        opacity: 1;
    }

    .form-group.password .eye-icon.show {
        background-image: url(/assets/images/icons/eye-show.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .form-group.password .eye-icon.hide {
        background-image: url(/assets/images/icons/eye-hide.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

.form-group.confirmpassword {
    position: relative;
    margin-top: 20px;
}

    .form-group.confirmpassword button.eye-icon {
        height: 20px;
        width: 20px;
        position: absolute;
        right: 0;
        bottom: 0;
        outline: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        margin-bottom: 10px;
        opacity: 1;
    }

    .form-group.confirmpassword .eye-icon.show {
        background-image: url(/assets/images/icons/eye-show.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .form-group.confirmpassword .eye-icon.hide {
        background-image: url(/assets/images/icons/eye-hide.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }


button[type="submit"] {
    background-color: var(--bendy-azul2);
    color: white;
    outline: 0;
    border: 0;
    height: 45px;
    width: 100%;
    border-radius: 5px;
    margin: 50px 0 20px 0;
    cursor: pointer;
    -webkit-appearance: none;
    font-size: 16px;
}

    button[type="submit"]:hover {
        background-color: #095e97;
        transition: background-color 300ms ease-in-out;
    }

.form-group {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}


    .form-group label {
        color: #7c7c7c;
        font-weight: 600;
        font-size: 12px;
        margin-top: 10px;
    }

.login-form a {
    font-size: 13px;
    color: #0775bc;
    margin: 0px;
    cursor: pointer;
}

.login-link-create-account {
    text-align: center;
}


/*.login-right .semi-circle-01 {
    position: absolute;
    top: 0px;
    right: 0px;
    background-image: url(/assets/images/logo/semi-circle-01.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    height: 200px;
    width: 200px;
    pointer-events: none;
    opacity: 0.2;
}

.login-right .semi-circle-02 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-image: url(/assets/images/logo/semi-circle-02.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    height: 200px;
    width: 200px;
    pointer-events: none;
    opacity: 0.2;
}*/


.login-left .semi-circle-03 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-image: url(/assets/images/logo/semi-circle-03.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    height: 200px;
    width: 200px;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

@media (max-width: 991px) {
    .login-left .semi-circle-03 {
        display: block;
    }
}
