body {
    height: 100%;
    margin: 0;
    background-color: black;
    color: rgba(253, 253, 253, 0.595);
    font-family: monospace;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 12px;
}

footer {
    font-size: 13px;
}


.content-wrapper {
    flex: 1;
}

.hero-section {
    height: 400px;
    width: 100%;
    padding-top: 60px;
    align-items: center;
}

.head-section {
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card {
    margin: auto;
    background-color: rgb(30, 0, 0);
    color: rgba(253, 253, 253, 0.595);
}

.login-container {
    width: 50%;
}

@media only screen and (max-width: 600px) {

    body,
    input {
        font-size: 12px;
    }

    .login-container {
        width: 100%;
    }


}


/*//chat style*/
#chat {
    max-width: 600px;
    font-size: 14px;
    margin: auto;
    color: white;
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#messages {
    list-style: none;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

#messages li {
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.accordion-button {
    background-color: black;
    color: white;
}

.user {
    background-color: #94955073;
}

.support {
    text-align: end;
    background-color: #50957673;

}

#chatForm {
    display: flex;
}

#msgInput {
    padding: 5px;
    font-size: 14px;
    outline: none;
}


 .red-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: red;
            border-radius: 50%;
            margin-left: 8px;
        }



    #paymentBox {
      display: none;
      margin-top: 20px;
    }



@media only screen and (max-width: 600px) {
    #chat {
        padding:10px;
    }
    .accordion-body{
        padding:0px;
    }

    #messages {
    max-height: 500px;
}
}