h1 {
    display: inline;
    color: aea422;
    margin: 0;
}

header {
    background-color: f1efd4;
    position: sticky;
    padding: 16px;
    top: 0;
}

html, body {
    margin: 0;
    height: 100%;
}

.chatcontainer {
    margin: 8;
    padding-bottom: 64;
}

footer {
    background-color: f1efd4;
    padding: 16px;
    position: fixed;
    padding-bottom: 64px;
    bottom: 0;
    width: 100%;

    input {
        width: calc(100vw - 66px);
        height: 30px;
        border-radius: 10px;
    }

    button {
        width: 30px;
        height: 30px;
        background-color: aea422;
        color: ffffff;
        border-radius: 10px;
        transition: all 0.2s ease-in-out;
    }

    button:hover {
        cursor: pointer;
        transform: scale(1.1);
    }
}

.login {
    text-align: center;
    vertical-align: middle;

    form {
        position: absolute;
        top: 0; bottom: 0; left: 0; right: 0;
        width: 240px;
        height: 240px;
        padding: 32px;
        border-radius: 32px;
        border: 2px solid black;
        margin: auto;
    }
    
    input {
        height: 30px;
        border-radius: 10px;
    }

    button {
        background-color: aea422;
        color: ffffff;
        border-radius: 10px;
        padding: 8px;
        transition: all 0.2s ease-in-out;
    }

    button:hover {
        cursor: pointer;
        transform: scale(1.1);
    }
}

.aviso {
    color: red;
}

.juice {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.msg:hover {
    background-color: #e8e7e2;
}