:root {
    --red: #FF4236;
    --blue: #92E2FA;
    --green: #79E985;
    --black: #2F2F2F;
    --gray: #A8A8A8;
    --bg-gray: #F1F1F1;
} 

body,
p,
span,
label,
input,
li,
ul,
ol,
div {
    font-weight: 400;
    color: var(--black);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-weight: 300;
    /* opacity: 0; */
    transition: all 0.5s;
    overflow-x: hidden;
    background-color: white;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
}

.container {
    padding: 0;
    max-width: 1200px;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
}

h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 30px;
    margin-top: 0;
    font-weight: 600;
    color: #2f2f2f;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

p {
    font-size: 16px;
    line-height: 1.8rem;
    margin: 0;
}

.primary-link {
    padding: 12px 32px;
    font-weight: 600;
    transition: background-color 0.3s color 0.3s;
    border-radius: 99px;
    display: block;
    width: fit-content;
    background-color: var(--blue);
    border: 2px solid var(--blue);
}

.primary-link:hover {
    background-color: white;
    color: var(--black);
}

::selection {
    background: var(--blue);
    color: white;
}

::-moz-selection {
    background: var(--blue);
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.cookiealert {
    opacity: 0;
    transition: all 0.5s;
}

.cookiealert.active {
    opacity: 1;
}

.cookiealert p {
    font-size: 14px;
}

.modal {
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 999;
}

.modal-dialog {
    margin-top: 250px;
}

.modal-backdrop {
    display: none !important;
}

.modal .close {
    padding: 5px 10px !important;
    background: transparent !important;
    margin: 0 !important;
}

.modal .card-header {
    display: none;
}

a {
    transition: all 0.3s;
    color: #2F2F2F;
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus {
    text-decoration: none;
    color: black;
}

button {
    transition: background-color 0.3s, color 0.3s;
    background-color: var(--blue);
    border: 2px solid var(--blue);
    outline: none;
    cursor: pointer;
    padding: 12px 18px 9px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

button:hover {
    background-color: white;
    color: var(--blue);
}

/* LOADER */

.loader {
    width: 100%;
    height: 100vh;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.5s ease-out;
}

.loader.end {
    opacity: 0;
    z-index: -1;
}

.loader #logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.loader .ball {
    z-index: 999;
}

/* LOGIN */

#login {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(../images/hero.jpg) no-repeat right center / cover;
    position: relative;
    overflow: hidden;
}

#login .blue-triangle,
#login .red-triangle {
    position: absolute;
    z-index: 0;
}

#login .blue-triangle {
    top: 0;
    right: 0;
}

#login .red-triangle {
    bottom: 0;
    right: 0;
}

#login .container {
    max-width: 600px;
    z-index: 1;
}

#login .alert-danger {
    color: var(--red);
    background-color: white;
    border-color: var(--red);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

#login .content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
}

#login .content img {
    width: 230px;
}

#login .info {
    width: 100%;
    padding: 5px;
    text-align: center;
    background-color: var(--bg-gray);
    margin: 15px 0;
}

#login form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#login .input-group {
    width: 100%;
}

#login .input-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

#login .input-group input {
    width: 100%;
    height: 40px;
    border: 1px solid var(--bg-gray);
    padding: 0 10px;
    outline: none;
    font-size: 16px;
}

.form-check {
    margin-left: 40px;
    padding-left: 0 !important;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 2;
    font-size: 16px;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -40px;
    margin-top: -5px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 5px;
    border: 2px solid var(--bg-gray);
    transition: 0.3s ease;
}

.form-check-input:checked+label::before {
    background-color: var(--blue);
    border: 2px solid var(--blue);
}

.form-check-input+label::after {
    content: " ";
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -35px;
    left: -5px;
    top: -12px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 24px;
    width: 24px;
    transition: 0.3s ease;
    opacity: 0;
}

.form-check-input:checked+label::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    opacity: 1;
    top: 2px;
}

#login button {
    background-color: var(--red);
    border: 2px solid var(--red);
    width: fit-content;
    margin: 0 auto;
}

#login button:hover {
    background-color: white;
    color: var(--red);
}

#login a {
    display: inline-block;
    color: var(--blue);
    margin-left: 10px;
}

#main, #ticket, #profile {
    width: 100vw;
    height: 100vh;
    padding: 30px 30px 30px 0;
    background-color: var(--bg-gray);
    display: flex;
    overflow: hidden;
}

#main .desktop-sidebar,
#ticket .desktop-sidebar,
#profile .desktop-sidebar {
    width: 300px;
    height: 100%;
}

#main .desktop-sidebar p,
#ticket .desktop-sidebar p,
#profile .desktop-sidebar p {
    margin: 0;
}

.main-card {
    width: 100%;
    height: 100%;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.main-card .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 40px 40px 0;
    width: 100%;
}

.main-card .header button,
.new-button #new-ticket,
.new-button #new-reply {
    background-color: var(--red);
    border: 2px solid var(--red);
}

.main-card .header button:hover,
.new-button #new-ticket:hover,
.new-button #new-reply:hover {
    background-color: white;
    color: var(--red);
}

.search-and-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    padding-bottom: 20px;
}


.search-and-order form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search {
    width: 250px;
    height: 45px;
    border: 1px solid var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search input {
    border: none;
    width: 85%;
    height: 100%;
    outline: none;
    padding: 0px 10px;
    font-size: 16px;
}

.search button {
    padding: 10px;
    border: none;
    background-color: transparent;
}

select {
    height: 45px;
    padding: 0 20px 0 10px;
    border: 1px solid var(--bg-gray);
    background-color: white;
    outline: none;
}

select option {
    padding: 10px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select option:hover {
    background-color: var(--bg-gray);
}

hr {
    width: calc(100% - 80px);
    margin: 0 auto;
    border: none;
    border-top: 1px solid var(--bg-gray);
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 90%;
    overflow-y: auto;
    scrollbar-width: thin;
    -webkit-scrollbar-width: thin;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.card {
    display: flex;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.card .indicator {
    width: 10px;
}

.card .center {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.card .header {
    padding: 10px 15px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    border-bottom: 1px solid var(--bg-gray);
}

.card .id {
    font-weight: 600px;
    font-size: 16px;
}

.card .date {
    font-size: 14px;
    color: var(--gray);
}

.card .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.card .sender {
    width: 220px;
    border-right: 1px solid var(--bg-gray);
    margin-right: 15px;
    padding: 20px 15px;
    overflow: hidden;
}

.card .name {
    color: #525252;
    line-height: 1.3;
}

.card .email {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.3;
}

.card .subject {
    font-size: 18px;
    font-weight: 600;
}

.card .left,
.card .right {
    display: flex;
    align-items: center;    
}

.card .left {
    border-right: 1px solid var(--bg-gray);
    width: 100%;
}

.card .status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 160px;
}

.card .status .circle {
    width: 8px;
    height: 8px;
    border-radius: 8px;
}

.card .right .button {
    padding: 20px 15px;
    border-left: 1px solid var(--bg-gray);
}

.card .right .button a {
    transition: background-color 0.3s, color 0.3s;
    background-color: var(--blue);
    border: 2px solid var(--blue);
    outline: none;
    cursor: pointer;
    padding: 12px 18px 9px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    display: block;
}

.card .right .button a:hover {
    background-color: white;
    color: var(--blue);
}

.pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.main-card {
    display: flex;
    flex-direction: column;
}

.main-card .header a {
    transition: background-color 0.3s, color 0.3s;
    background-color: var(--blue);
    border: 2px solid var(--blue);
    outline: none;
    cursor: pointer;
    padding: 12px 18px 9px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-card .header a:hover {
    background-color: white;
    color: var(--blue);
}

.main-card .header a span {
    color: white;
    transition: all 0.3s;
}

.main-card .header a:hover span {
    color: var(--blue);
}

.main-card .header a path {
    transition: fill 0.3s;
}

.main-card .header a:hover path {
    fill: var(--blue);
}

.main-card .id-with-subject {
    padding: 0 40px;
}

.main-card .subject p {
    font-size: 18px;
    font-weight: 600;
}

.main-card .container {
    padding: 0 30px 0 20px;
    display: flex;
    align-items: flex-start;
    max-width: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    -webkit-scrollbar-width: thin;
}

.main-card .left {
    width: 100%;
}

.main-card .info {
    width: calc(100% - 80px);
    text-align: center;
    background-color: #79E98566;
    padding: 8px;
    margin: 15px auto;
}

.main-card .messages {
    overflow-y: auto;
    scrollbar-width: thin;
    -webkit-scrollbar-width: thin;
    height: 65%;
    padding: 0 20px;
}

.main-card .message {
    border: 1px solid var(--bg-gray);
    margin-bottom: 20px;
}

.main-card .message .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    padding-right: 20px;
    margin: 0;
    background-color: #F8F8F8;
}

.main-card .message .header .left,
.main-card .message .header .right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-card .message .header .left img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.main-card .message .header .left .direction {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-card .message .header .left .name {
    display: flex;
    gap: 5px;
}

.main-card .message .header .right .date {
    white-space: nowrap;
}

.main-card .message .email {
    padding: 20px;
}

.main-card .message .email p {
    margin-bottom: 15px;
}

.main-card .attachments {
    margin-top: 30px;
}

.main-card .attachments h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-card .attachments a {
    color: var(--blue);
}

.main-card .message .email .reply {
    background-color: var(--red);
    border: 2px solid var(--red);
    margin-top: 30px;
}

.main-card .message .email .reply:hover {
    background-color: white;
    color: var(--red);
}

#infos-modal .overlay,
#infos-modal .close-modal {
    display: none;
}

.main-card .container .infos {
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 20px;
    padding: 20px;
    border: 1px solid var(--bg-gray);
}

.main-card .container .infos h2 {
    display: none;
}

.main-card .container .infos span {
    font-weight: 600;
    display: block;
    font-size: 15px;
}

.main-card .container .infos .title {
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 5px;
}

#profile form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 40px;
    gap: 30px;
}

#profile form .input-group {
    flex-basis: 47%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#profile form .input-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    display: block;
    text-transform: uppercase;
}

#profile form .input-group input {
    width: 100%;
    height: 40px;
    border: 1px solid var(--bg-gray);
    padding: 0 10px;
    outline: none;
    font-size: 16px;
}

#profile form .input-group .line {
    position: relative;
}

#profile form .input-group .line button {
    background-color: transparent;
    border: none;
    position: absolute;
    right: -40px;
    padding: 10px;
}

#profile form .input-group button {
    width: fit-content;
}

#profile form .input-group:last-of-type {
    flex-basis: 100%;
    display: flex;
    align-items: flex-end;
}

#profile form .input-group:last-of-type button {
    background-color: var(--red);
    border: 2px solid var(--red);
}

#profile form .input-group:last-of-type button:hover {
    background-color: white;
    color: var(--red);
}

/* MODAL */

#new-modal,
#reply-modal {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 15px;
    display: none;
    opacity: 0;
    transition: all 0.3s;
}

#new-modal.active,
#reply-modal.active,
#infos-modal.active {
    opacity: 1;
}

#new-modal .content,
#reply-modal .content {
    width: 100%;
    max-width: 800px;
    max-height: 100%;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    scrollbar-width: thin;
    -webkit-scrollbar-width: thin
}

#new-modal .close-modal,
#reply-modal .close-modal,
#infos-modal .close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

#new-modal .close-modal img,
#reply-modal .close-modal img, 
#infos-modal .close-modal img{
    width: 15px;
    height: 15px;
}

#new-modal h2,
#reply-modal h2{
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

#new-modal form,
#reply-modal form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#new-modal .input,
#reply-modal .input{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#new-modal label,
#reply-modal label{
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    display: block;
    text-transform: uppercase;
}

#new-modal input,
#new-modal textarea,
#reply-modal input, 
#reply-modal textarea { 
    width: 100%;
    height: 40px;
    border: 1px solid var(--bg-gray);
    padding: 0 10px;
    outline: none;
    font-size: 16px;
    resize: none;
}

#new-modal select, #new-modal option {
    font-size: 16px;
    font-family: 'Josefin Sans', sans-serif;
}

#new-modal .browser,
#reply-modal .browser {
    display: flex;
    align-items: center;
    gap: 20px;
}

#new-modal .browse,
#reply-modal .browse {
    color: #444;
    padding: 14px 20px 10px;
    border: 1px solid var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s, color 0.3s;
    font-size: 16px;
}

#new-modal .browse:hover,
#reply-modal .browse:hover {
    background-color: #444;
    color: white;
}

#new-modal button,
#reply-modal button {
    background-color: var(--red);
    border: 2px solid var(--red);
    width: fit-content;
    margin: 0 auto;
}

#new-modal button:hover,
#reply-modal button:hover {
    background-color: white;
    color: var(--red);
}

.new-button {
    display: none;
}

#information {
    background-color: transparent;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-gray);
    display: none;
}

#information img {
    width: 20px;
    height: 20px;
}

@media (max-width: 1079px) {

    p {
        font-size: 14px;
    }

    .mobile-none {
        display: none !important;
    }

    #main, #ticket, #profile {
        padding: 0;
        margin-top: 105px;
    }

    .main-card {
        height: auto;
    }

    .desktop-sidebar {
        display: none;
    }

    .main-card .header {
        padding: 0 20px;
        margin-bottom: 20px;
        justify-content: center;
    }

    #new-ticket:first-of-type {
        display: none;
    }

    .search-and-order {
        padding: 0 20px;
    }

    .search-and-order form,
    .search-and-order #order {
        width: 48%;
    }

    .search-and-order .search,
    select {
        width: 100%;
        height: 36px;
    }

    .search-and-order form #field,
    .search-and-order form #search-btn {
        display: none;
    }

    .search input {
        font-size: 14px;
    }

    .main-card hr {
        display: none;
    }

    .main-card .cards {
        padding: 20px;
        height: auto;
        margin-bottom: 0;
    }

    .main-card .card .header {
        justify-content: space-between;
        padding: 6px 15px 3px;
        margin-bottom: 0;
    }

    .main-card .card .header .id,
    .main-card .card .header .date {
        font-size: 14px;
    }

    .main-card .card .content .left {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .main-card .card .content .sender {
        width: 100%;
        padding: 0 0 15px;
        border-right: none;
        margin-right: 0;
    }

    .main-card .card .content .right {
        display: none;
    }

    .pagination {
        position: relative;
        margin: 0 auto;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .pagination p {
        font-size: 14px;
    }

    .new-button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        z-index: 2;
    }

    .new-button #new-ticket {
        display: block !important;
    }

    #new-modal .content,
    #reply-modal .content {
        padding: 20px;
    }

    #new-modal .close-modal,
    #reply-modal .close-modal,
    #infos-modal .close-modal {
        top: 12px;
        right: 10px;
    }

    #new-modal h2,
    #reply-modal h2 {
        font-size: 24px;
        text-align: left;
    }

    #new-modal input,
    #new-modal textarea,
    #new-modal select,
    #new-modal option,
    #reply-modal input,
    #reply-modal textarea,
    #reply-modal select,
    #reply-modal option,
    .filename {
        font-size: 14px;
    }

    #new-modal .browse,
    #reply-modal .browse {
        font-size: 14px;
        height: 40px;
        padding: 0;
        width: 180px;
    }

    #new-modal button,
    #reply-modal button,
    #infos-modal button {
        font-size: 14px;
    }

    .main-card .header.ticket-header {
        justify-content: space-between;
    }

    .main-card .header.ticket-header a {
        width: 43px;
        height: 43px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-card .header.ticket-header a img {
        width: 20px;
        height: 20px;
    }

    .main-card .id-with-subject {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: -54px;
        z-index: -1;
    }

    .main-card .id-with-subject h1 {
        width: fit-content;
        font-size: 26px;
    }

    .main-card .info {
        width: calc(100% - 40px);
        margin: 10px auto 15px;
    }

    .main-card .container {
        padding: 0;
        flex-direction: column;
    }

    .main-card .messages {
        height: auto;
        padding-bottom: 100px;
    }

    .main-card .message .header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: relative;
        padding: 8px 0;
    }

    .main-card .message .header .left {
        align-items: flex-start;
        gap: 10px;
        padding-left: 40px;
    }

    .main-card .message .header .right {
        flex-direction: row-reverse;
        gap: 10px;
        padding-left: 40px;
    }

    .main-card .message .header .right .date {
        color: #aaa;
    }

    #information {
        display: flex;
    }

    .main-card .message .header .left .direction {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 30px;
    }

    .main-card .message .header .left .name {
        flex-direction: column;
        gap: 0;
    }

    .main-card .message .header .left .name p {
        line-height: 1.5;
    }

    #infos-modal {
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.3);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        padding: 15px;
        display: none;
        opacity: 0;
        transition: all 0.3s;
    }

    #infos-modal .infos {
        background-color: white;
        margin: 0;
        position: relative;
        gap: 10px;
    }

    #infos-modal .overlay,
    #infos-modal .close-modal {
        display: block;
    }

    .main-card .container .infos h2 {
        display: block;
        font-size: 24px;
        margin: 0;
    }

    .main-card .container .infos .title {
        margin-bottom: 3px;
    }

    .main-card .container .infos .title,
    .main-card .container .infos span {
        font-size: 14px;
    }

    #profile form {
        padding: 0 20px;
    }

    #profile form .input-group {
        flex-basis: 100%;
    }

    #profile form .input-group:first-of-type {
        flex-basis: 93%;
    }

    #profile form .input-group label {
        font-size: 14px;
    }

    #profile form .input-group input {
        height: 36px;
        font-size: 14px;
    }

    #profile form .input-group .line button {
        right: -35px;
    }

    #profile form .input-group button {
        font-size: 14px;
    }

    #profile form .input-group:last-of-type {
        flex-direction: column;
        align-items: center;
    }

    #login {
        padding: 20px;
    }

    #login .content {
        padding: 20px;
    }

    #login .content img {
        width: 150px;
    }

    #login .info {
        padding: 5px;
    }

    #login form {
        gap: 15px;
    }

    #login .input-group input {
        height: 36px;
    }

    #login .input-group label {
        font-size: 14px;
    }

    #login .input-group .form-check {
        margin-left: 0;
    }

    #login .input-group .form-check input {
        position: relative;
        left: 0;
    }

    #login .lostpassword {
        text-align: center;
    }

}