* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    padding: 0;
    background-color: #385b91;
}

h1 {
    color: #013586;
    font-size: 37px;
}

#logo {
    height: 300px;
    width: 300px;
    margin-top: 30px;
}

#main {
    width: 70%;
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 0;
    background-color: 	#385b91;
}


form {
    margin-top: 20px;
}

button {
    background-color:	#7B68EE;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    height: 45px;
    width: 45px;
}

button:hover {
    background-color: #4169E1;
}

h2 {
    margin-top: 20px;
    color: #333;
}


#response-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    max-height: 700px;
    overflow-y: scroll;
}

.user-bubble, .chatbot-bubble {
    padding: 10px 15px;
    border-radius: 30px;
}

.user-bubble {
    background-color: 	#F2F2F2;
    color: black;
    border-top-left-radius: 0px;
}


.chatbot-bubble {
    background-color: #F2F2F2;
    color: black;
    align-self: flex-end;
    border-top-right-radius: 0px;
}

#ask_container {
    position: fixed;
    bottom: 3%;
}
#user_query {
    padding: 10px;
    height: 45px;
    width: 880px;
    border: none;
}

#submit_btn {
    position: absolute;
    padding: 10px;
    right: 0px;
}

#sub {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FDFDFD;

    width: 30vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#send {
    display: flex;
    align-self: flex-start;
    max-width: 60%;
    margin-bottom: 15px;
    padding: 10px 15px;
}

#send img {
    margin-right: 13px;
}

#response {
    display: flex;
    align-self: flex-end;
    max-width: 500px;
    margin-bottom: 15px;
    padding: 10px 15px;
}

#response img {
    margin-left: 13px;

}



#reset_btn {
    margin-right: 10px;
    border-radius: 10px;
}

.input-container {
    width: 100%;
}