@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    box-sizing: border-box;
}

body {
    --background: #fafafa;
    --background-2: #000a3b;
    --section: #ffffff;
    --heading: #000000;
    --text: #999999;
    --primary: #673de6;
    --primary-2: #ffc107;
    --secondary: #ffffff;

    background-color: var(--background);
    font-family: "Manrope", sans-serif;
    /* font-family: "Poppins", sans-serif;
    font-family: "DM Sans", sans-serif; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading);
}

i {
    color: var(--heading);
}

p {
    color: var(--text);
}


a {
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    pointer-events: none;
}

video {
    width: 100%;
}

ul {
    list-style: none;
    padding-left: 0;
}

input,
select {
    box-shadow: none !important;
    border-color: #f5f5f5 !important;
}

input:focus,
select:focus {
    border-color: #f5f5f5 !important;
}

.scrollbar::-webkit-scrollbar {
    display: none;
}

trix-toolbar .trix-button-group {
    border: 1px solid #f5f5f5 !important;
}

trix-editor {
    border: 1px solid #f5f5f5 !important;
    min-height: 7em !important;
}



/* ===== AUTH ===== */

.auth {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background-2);
}

.auth .wrap {
    width: 35%;
}

.auth .logo {
    text-align: center;
}

.auth .logo img {
    width: 12%;
    margin-bottom: 8px;
    border-radius: 50%;
}

.auth .logo h6 {
    font-size: 14px;
}

.auth .caption {
    text-align: center;
}

.auth .caption h2 {
    color: #ffffff;
}

.auth .caption p {
    color: var(--text);
}

@media (max-width: 576px) {

    .auth .wrap {
        width: 90%;
    }
    
    .auth .logo img {
        width: 15%;
    }

    .auth .caption h2 {
        font-size: 28px;
    }

    .auth .caption p {
        font-size: 16px;
    }
}



/* === REGISTER | LOGIN === */

.auth_form {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth_form .wrap {
    width: 35%;
}

.auth_form .logo {
    text-align: center;
}

.auth_form .logo img {
    width: 12%;
    margin-bottom: 8px;
    border-radius: 50%;
}

.auth_form .logo h6 {
    font-size: 14px;
}

@media (max-width: 678px) {

    .auth_form .wrap {
        width: 90%;
    }
    
    .auth_form .logo img {
        width: 15%;
        margin-bottom: 8px;
        border-radius: 50%;
    }
}