/*Page Login*/

.form-login {
    display: flex;
    flex-direction: column;
    font-family: Open Sans,sans-serif;
    justify-content: center;
    padding: 2rem;
    width: 30vw;
    min-width: 350px;
    background-color: white;
}

.form-login__inputs {
    margin-bottom: 0.8rem;
}

.page-login, .page-login__footer, .page-login__controls {
    align-items: center;
    display: flex;
}

    .page-login__footer{
        margin-top: 15px;
    }

    .page-login {
        flex-direction: column;
        height: 100vh;
        justify-content: center;
        overflow: hidden;
        padding: 0.625rem;
        width: 100vw;
    }

.input-wrapper {
    display: flex;
    flex-direction: column;
    font-family: Open Sans,sans-serif;
}

    .input-wrapper:not(:last-of-type) {
        margin-bottom: 20px;
    }

/*Page Acompanhamento*/

.btn-acomp {
    border-radius: 4px;
    border: none;
    color: white;
    text-align: center;
    font-size: 0.9em;
    text-decoration: none;
    display: inline-block;
    /*margin-top: 3px;
    margin-bottom: 3px;*/
    cursor: pointer;
    background-color: var(--secondary-color);
    /*padding-top: 1.2em;
    padding-bottom: 1.2em;*/
    width: 12%;
    height: 7em;
}

    .btn-acomp div {
        border-radius: 4px;
        color: #616f80;
        text-align: center;
        font-size: 0.8em;
        text-decoration: none;
        background-color: #616f80;
        display: inline-block;
        width: 100%;
    }

    .btn-acomp:focus {
        background-color: var(--info-color);
        border: solid;
        border-color: var(--secondary-color);
        border-width: 1px;
    }

.container-video {
    /*margin-left: auto;
    margin-right: auto;
    padding-left: 3em;
    padding-right: 3em;*/
}

/*Geral*/

.text-resultado {
    font-size: 15px;
    /*text-transform: uppercase;*/
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 5px;
}

.text-erro {
    font-size: 15px;
    /*text-transform: uppercase;*/
    color: var(--danger-color);
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Chat box*/

.container-chat {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-left: 2px;
    padding-right: 2px;
}

/* chat box section */
.chat-box {
    width: 100%;
    height: 52em;
    background-color: #fff;
    border-radius: 10px;
    scroll-behavior: auto;
    position: relative;
    padding: 1%;
}

/* about client */

.client {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 80px;
    background-color: #77b3d4;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.client-info {
    color: #fff;
    padding: 10px;
}

    .client-info p {
        color: #008000;
        font-weight: bold;
        font-size: 1em;
    }

    .client-info h6 {
        font-weight: bold;
    }


/* chat section */

.chats {
    width: 100%;
    padding: 0 15px;
    color: #fff;
    position: relative;
    font-size: 1.1em;
    height: 80%; /*300px*/
    overflow-y: scroll;
    display: flex;
    flex-direction: column-reverse;
}

.client-chat {
    width: 75%;
    word-wrap: break-word;
    background-color: #4f5d73c7;
    padding: 7px 10px;
    border-radius: 10px 10px 10px 0;
    margin: 10px 0;
}

.my-chat {
    width: 75%;
    word-wrap: break-word;
    background-color: #77b3d4c7;
    padding: 7px 10px;
    border-radius: 10px 10px 0 10px;
    margin: 5px 0 5px auto;
}

.chat-footer {
    text-align: right;
    font-size: 0.7em;
}

/* input section */
.chat-input {
    display: flex;
    align-items: center;
    width: 100%;
    height: 8%; /*65px*/
    /*background-color: #fff;*/ /*#fff*/
    padding: 8px 1px 8px 1px;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
}

    .chat-input textarea {
        width: 84%; /*calc(100% - 20px)*/
        height: 100%;
        margin-right: 1%;
        background-color: #4f5d7321;
        border-radius: 10px;
        color: #000;
        font-size: 1.1em;
        padding: 0 10px;
        resize: none;
    }

.send-btn {
    width: 12%;
    height: 100%;
    /*background-color: transparent;*/
    align-content: center;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    /*margin-left: 5px;*/
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

    .send-btn:active {
        transform: scale(0.85);
    }

    .send-btn img {
        width: 100%;
        height: 100%;
    }

/* chat box button section */

.chat-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
}

    .chat-btn img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 5px;
        transition: 0.4s ease-in-out;
    }

    .chat-btn:hover img {
        transform: rotate(30deg);
    }
