.title {
    font-size: 30px;
}

.title_sub {
    font-size: 40px;
}

.tam {
    text-align: center;
}

.nm {
    margin: 0;
}

.np {
    padding: 0;
}

.dul>* {
    margin-bottom: 10px;
}

.ip {
    height: 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding-left: 10px;
    font-size: 15px;
}

.ip::placeholder {
    color: rgb(148, 148, 148);
}

.ip:hover::placeholder {
    color: rgb(0, 0, 0);
}

.ib {
    margin-top: 20px;
    padding: 7px 30px 7px 30px;
    border-radius: 10px;
    font-size: 20px;
    border: 0px;
    background-color: rgb(255, 225, 54);
    color: rgb(46, 46, 46);
    -webkit-text-stroke: 1px rgb(46, 46, 46);
}

.ib:hover {
    background-color: rgb(255, 218, 9);
    color: black;
}

@keyframes flush {
    0% {
        background-color: #ffa7a7;
    }

    10% {
        background-color: #ffa7a7;
    }

    100% {
        background-color: rgba(255, 49, 49, 0);
    }
}

.anmi {
    border-radius: 10px;
    animation: flush 1200ms both;
}

.msg_box_p {
    top: 30px;
    right: 0px;
    position: absolute;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.msg_box {
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    align-self: flex-start;
    width: 150px;
    margin-left: calc(100% - 200px);
    border: 1px solid;
    word-wrap: break-word;
}

@keyframes msg_move {
    0% {
        opacity: 0.2;
        margin-left: 100%;
    }

    20% {
        opacity: 1;
        margin-left: calc(100% - 200px);
    }

    80% {
        opacity: 1;
        margin-left: calc(100% - 200px);
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.1;
        margin-left: calc(100% - 300px);
    }
}

.msg_show {
    animation: msg_move 4000ms both;
}

.msg_i {
    background-color: rgb(194, 255, 194);
    color: rgb(0, 134, 67);
    border-color: rgb(85, 192, 117);
}

.msg_i::before{
    content: "ℹ ";
}

.msg_w {
    background-color: rgb(245, 255, 158);
    color: rgb(139, 139, 17);
    border-color: rgb(194, 196, 95);
}

.msg_w::before{
    content: "⚠ ";
}

.msg_e {
    background-color: #ffa7a7;
    color: rgb(126, 0, 0);
    border-color: rgb(255, 130, 130);
}

.msg_e::before{
    content: "❌ ";
}

