@font-face {
    font-family: 'Montserrat';
    src: url("/static/fonts/Montserrat/Montserrat-VariableFont_wght.b87689f37dfb.ttf") format('truetype');
    font-weight: 100 900;
    /* Supports all weights */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("/static/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.5a669c0a7180.ttf") format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "navbar main"
        "navbar footer";
    font-family: 'Montserrat', sans-serif;
}

aside {
    grid-area: navbar;
}

main {
    grid-area: main;
}

footer {
    grid-area: footer;
}

/* Margins */

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

/* Sizes */
.vw-50 {
    width: 50vw;
}

/* Borders */

.br-30 {
    border-radius: 30px
}

/* NAV BAR STYLES STARTS HERE */

.nav-bar {
    background: var(--bg-color);
    box-sizing: border-box;
    height: 100vh;
    width: 272px;
    padding: 8px 1rem;
    border-right: 1px solid var(--accent-color);

    position: sticky;
    top: 0;
    align-self: start;
}

.nav-bar a {
    border-radius: .5em;
    padding: .85em;
    text-decoration: none;
    color: var(--grey-700);
    display: flex;
    align-items: center;
    gap: 1em;

}

.nav-bar svg {

    flex-shrink: 0;
    fill: var(--grey-700);

}

.nav-bar a span,
.nav-bar {
    flex-grow: 1;
}

.nav-bar a:hover {
    background-color: var(--primary-50);
}

.nav-bar a:focus {
    color: var(--gray-900);
    font-weight: 600;

    svg {
        fill: var(--gray-900);
    }
}

.nav-bar a:active {
    color: var(--gray-900);
    font-weight: 600;

    svg {
        fill: var(--gray-900);
    }
}

.nav-link {
    font-size: 14px !important;
}


.nav-bar ul {
    list-style: none;
}

.nav-bar>ul>li:first-child {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}



.profile-card-container {

    display: flex;
    flex-direction: column;
    align-items: center;

}

.creator-logo-container {
    display: flex;
    align-items: center;
    width: 90px;
    height: auto;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-size: 16px;
    padding: 10px;
    font-weight: 500;
}

.navbar--nav {
    padding: 0;
    margin: 0;
}

.nav-profile {
    display: flex;


}

/* NAV BAR STYLES ENDS HERE */

/* LOGIN STYLES STARTS HERE */

.login-h-60 {
    font-size: 60px;
}

.left-container {
    background-color: #1B1818;
}

.inner-left-container {
    padding: 60px;

}

.login-logo {
    width: 58px;
}

.top-content {
    display: grid;
    grid-template-columns: auto;
    row-gap: 16px;
    padding: 16px 0;
}

.clamp-15-25-4 {
    font-size: clamp(3rem, 3.2rem, 3.75rem);
}

.login-h-60 {
    color: white;
    line-height: 110%;
}

.login-h-60 span {
    color: #EB5017;
}

.login-p-16 {
    color: #E4DBDB;
    width: 420px;
    line-height: 145%;

}

.login-content-container {
    background-color: #3E3838;
    padding: 8px;
    border-radius: 20px;
}

.login-icon {
    width: 22px;
    height: 22px;
}

.login-list-container {
    color: white;
    list-style: none;
    display: flex;
    padding: 0px 16px;
    flex-direction: row;
    align-items: anchor-center;
}

.feature-title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.login-list-container p {
    margin-top: 0;
}

.feature-title img {
    margin-right: 8px;
}

.login-list-text {
    padding: 0 16px;

}

/*  ## RIGHT CONTAINER ## */

.right-container {
    align-content: center;
}

.inner-right-container {
    max-width: 80%;
    margin: auto;
}

.login-right-top-content p {
    font-size: 14px;
    color: #645D5D;
    padding: 4px 8px;
}

.login-right-top-content a {
    color: #EB5017;
    text-decoration: none;
    font-weight: 600;
}

.login-list-text p {
    font-size: 16px;
}

.login-list-text h3 {
    font-size: 16px;
    font-weight: bold;

}


.login-h-36 {
    font-size: 36px;
    font-weight: 600;
    line-height: 100%;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form input, .login-form select {
    padding: 16px;
    border: solid;
    border-color: #D0D5DD;
}

.login-form label {
    font-size: 14px;
    padding: 4px 0;
    font-weight: 400;
    color: #101928;
}


.login-form button {
    font-size: 14px;
    padding: 16px 16px;
    margin: 16px 0 0 0;
    font-weight: 400;
    color: #fff;
    background-color: #EB5017;
    border: none;
}

.login-right-bottom-content {
    font-size: 14px;
    color: #645D5D;
    padding: 4px 0px;
    margin: auto 0;

}

.login-right-bottom-content p {
    font-size: 14px;
    color: #645D5D;
    padding: 4px 0px;

}

.login-right-bottom-content a {
    color: #EB5017;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .left-container {
        width: 60vw;
    }

    .right-container {
        width: 40vw;
    }

    .inner-right-container {
        max-width: 75% !important;
        margin: unset;
    }
}

/* Hide the section on screens smaller than 768px (mobile) */
@media screen and (max-width: 768px) {

    body {
        display: block;
    }

    .left-container {
        display: none;
    }

    .right-container {
        display: flex;
        justify-content: center;
        /* Centers horizontally */
        align-items: center;
        /* Centers vertically */
        height: 100vh;
        margin: auto;
        width: 75vw;
    }

    .login-h-60 {
        font-size: 1.25rem;
    }

    .login-right-top-content p {
        font-size: 14px;
        color: #645D5D;
        padding: 4px 0px;
    }
}

/* Ensure visibility on larger screens */
@media screen and (min-width: 1143px) {
    .left-container {
        display: block;
        align-items: center;
    }
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info {
    background-color: #e0f2fe;
    color: #075985;
    border: 1px solid #bae6fd;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Form validation styles */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control.is-invalid {
    border-color: #dc2626;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc2626' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc2626' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
}

/* Terms and privacy links */
.login-right-bottom-content {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.login-right-bottom-content a {
    color: var(--primary-accent);
    text-decoration: none;
}

.login-right-bottom-content a:hover {
    text-decoration: underline;
}
