﻿
:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

::-webkit-scrollbar-track {
    background-color: #ccc;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #393939;
}

::-webkit-scrollbar-thumb {
    background-color: #393939;
    border: 2px solid #ccc;
    border-radius: 2px;
    border-radius: 10px;
}

@media (min-width: 769px) and (max-width: 1260px) {
    html {
        font-size: 90.75%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 87.5%;
    }
}

form {
    display: block;
    margin-top: 0em;
    unicode-bidi: isolate;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    align-items: center;
    background: var(--background-color);
    color: #fff;
}


body {
    font-family: "Inter", system-ui;
}


.container {
    display: flex;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1140px;
}


.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
}


.col {
    flex: 1;
    padding-left: 15px;
    padding-right: 15px;
}


.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}


.col-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}


.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.form-control {
    width: 100%;    
    box-sizing: border-box;
}



section {
    width: 100%;
    box-sizing: border-box;
}


.alert {
    padding: 16px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 32px;
    background: rgb(204 204 204 / 10%);
}

.alert ul{
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.alert.alert-danger{
    border: 1px solid #ff5454;
    background: rgb(255 35 35 / 10%);
}

.form-group {
    min-width: 100%;
    margin-bottom: 24px;
}

.form-group label {
    margin-bottom: 8px;
    display: block;
    color: #7E7E7E;
}

.form-group input[type="email"], .form-group input[type="password"], .form-group input[type="text"] {
    width: 100%;
    height: 50px;
    background: #C4C4C4;
    border: 0px;
    outline: none;
    border-radius: 10px;
    max-width: 100%;
    padding: 0px 16px;
    font-size: 1rem;
}

.text-danger.field-validation-error {
    padding: 16px 0px;
    display: block;
    color: #ff5454;
}

.hidden{
    display: none;
}