html,body {
    height: 100%;
    margin: 0 0;
}
body {
    background: url('body_bg.svg') no-repeat;
    background-size: cover;
    font-family: 'Inter', sans-serif;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
}
img {
    width: 100%;
    height: auto;
}
ul {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
button {
    background-color: #EFEFEF;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    padding: 6px 12px;
}
main h6 {
    font-family: 'Lexend', sans-serif;
    font-size: 56px;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(191, 233, 255, 0.5) 3.37%, #FFFFFF 25%, rgba(223, 189, 201, 0.5) 47.12%, rgba(186, 165, 255, 0.5) 68.27%, #FFFFFF 87.02%, rgba(218, 255, 165, 0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0 0 15px;
}
.description-wrapper h2 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0 0 15px 25px;
}
a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #FFFFFF;
}
p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    padding: 0 0 !important;
    margin: 0 0;
    width: fit-content !important;
}
input[type="text"] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    padding: 19px 25px;
    border: 1px solid #d3d3d3;
    border-radius: 12px;
    height: 58px;
    display: block;
    width: 100%;
    margin-bottom: 25px;
}
input[type="text"]:focus-visible,
input[type="text"]:focus {
    outline: none;
    box-shadow: none;
}
input[type="submit"],
button[type="submit"] {
    font-size: 16px;
    line-height: 24px;
    background: linear-gradient(180deg, #EA0029 0%, #C33F56 100%);
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    border: none;
    border-radius: 16px;
    padding: 10px 10px;
    width: 107px;
    gap: 8px;
    display: flex;
    align-items: center;
}
button img {
    width: 28px;
    height: 28px;
}
input[type="submit"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url('send-icon.svg') no-repeat;
    background-size: contain;
    background-position: center left;
    width: 28px;
    height: 28px;
}
header {
    margin-bottom: 95px;
}
.site-logo img {
    width: 393px;
    margin-bottom: 15px;
    height: 70px;
    object-fit: contain;
}
.logo {
    width: 243px;
    padding: 0 0;
}
.content {
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.search-types button {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-types button img {
    width: 20px;
    height: 20px;
}
form,
.form-class {
    position: relative;
}
footer p {
    text-align: center;
    width: 100% !important;
    position: relative;
    bottom: 25px;
    line-height: 26px;
}
footer p span {
    margin-left: 10px;
}

/* gpt_s2 */
header.gpt_s2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 55px;
    border-bottom: 1px solid #272727;
}
.gpt_s2 .content {
    margin: 0 0;
}
.gpt_s2 .content p {
    font-size: 12px;
}
.gpt_s2 .logo {
    width: 194px;
}
.gpt_s2 .site-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 0;
}
.gpt_s3 {
    justify-content: space-evenly;
}
/* Chat */
.chat {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    max-height: 300px;
}
.chat p {
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}
.chat .query {
    width: 258px;
    margin-left: auto;
    margin-bottom: 12px;
}
.chat .query p:not(.message-time) {
    background-color: #000F9F;
    padding: 8px 14px !important;
    border-radius: 8px;
}
.chat .query img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-left: 10px;
}
.chat .response {
   /* max-width: 530px; */
   margin-bottom: 10px;
   width: 100%;
}
.chat .response img {
    width: 29px;
    height: 32px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    main {
        padding: 0 15px;
        max-width: 100%;
        height: 100%;
    }
    header.gpt_s2 {
        padding: 15px 15px;
    }
}
@media (max-width: 575px) {
    header.gpt_s2 {
        flex-direction: column;
        gap: 15px;
    }
}