/*CSS Resets Start */
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;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
html {
    scroll-behavior: smooth;
    font-size: 40px;
}
body {
    line-height: 1;
    font-family: "Poppins";
}
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;
}
/*CSS Resests Completed */

/* default classes */
a {
    text-decoration: none;
    color: black;
}
.border {
    border: 1px solid rgba(128, 128, 128, 0.318);
}
.container {
    /* max-width: 1320px; */
    /* max-width: 1800px; */
    max-width: 3684px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}
.mini-container {
    max-width: 800px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}

/* Flex */
.flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-no-wrap {
    flex-wrap: nowrap;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}
.justify-center {
    justify-content: center;
}
.justify-right {
    justify-content: right;
}
.justify-end {
    justify-content: end;
}
.align-center {
    align-items: center;
}
.align-start {
    align-items: start;
}
.align-end {
    align-items: end;
}
.space-between {
    justify-content: space-between;
}
.space-around {
    justify-content: space-around;
}
.space-evenly {
    justify-content: space-evenly;
}
.flex2 {
    flex: 0 1 2%;
}
.flex5 {
    flex: 0 1 5%;
}
.flex7 {
    flex: 0 1 7%;
}
.flex10 {
    flex: 0 1 10%;
}
.flex14 {
    flex: 0 1 14%;
}
.flex12 {
    flex: 0 1 12%;
}
.flex13 {
    flex: 0 1 13%;
}
.flex15 {
    flex: 0 1 15%;
}
.flex18 {
    flex: 0 1 18%;
}
.flex20 {
    flex: 0 1 20%;
}
.flex23 {
    flex: 0 1 23%;
}
.flex22 {
    flex: 0 1 22%;
}
.flex25 {
    flex: 0 1 25%;
}
.flex28 {
    flex: 0 1 28%;
}
.flex30 {
    flex: 0 1 30%;
}
.flex33 {
    flex: 0 1 33%;
}
.flex35 {
    flex: 0 1 35%;
}
.flex40 {
    flex: 0 1 40%;
}
.flex42 {
    flex: 0 1 42%;
}
.flex45 {
    flex: 0 1 45%;
}
.flex48 {
    flex: 0 1 48%;
}
.flex50 {
    flex: 0 1 50%;
}
.flex55 {
    flex: 0 1 55%;
}
.flex60 {
    flex: 0 1 60%;
}
.flex65 {
    flex: 0 1 65%;
}
.flex68 {
    flex: 0 1 68%;
}
.flex70 {
    flex: 0 1 70%;
}
.flex73 {
    flex: 0 1 73%;
}
.flex75 {
    flex: 0 1 75%;
}
.flex80 {
    flex: 0 1 80%;
}
.flex90 {
    flex: 0 1 90%;
}
.width-full {
    width: 100%;
}
.height {
    height: 100vh;
}

/* Grid */
.grid {
    display: grid;
}

.alert-box {
    background-color: #ffe6e6; /* light red */
    border: 1px solid #ff4d4d; /* red border */
    color: #b30000; /* dark red text */
    padding: 16px 20px;
    margin-bottom: 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.alert-box:hover {
    background-color: #ffd6d6;
    border-color: #e60000;
}

.alert-box ul {
    margin: 0;
    padding-left: 22px;
    list-style-type: disc;
}

.alert-box li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 5px;
}

.alert-box li:last-child {
    margin-bottom: 0;
}

/* Success Message */
.alert-success {
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #166534; /* dark green text */
    background-color: #dcfce7; /* light green background */
    border: 1px solid #86efac; /* medium green border */
    border-radius: 0.5rem;
}

/* Error Message */
.alert-error {
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #991b1b; /* dark red text */
    background-color: #fee2e2; /* light red background */
    border: 1px solid #fca5a5; /* medium red border */
    border-radius: 0.5rem;
}

/* Warning Message */
.alert-warning {
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #92400e; /* dark orange text */
    background-color: #fef3c7; /* light orange background */
    border: 1px solid #fcd34d; /* medium orange border */
    border-radius: 0.5rem;
}

/* Info Message */
.alert-info {
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #075985; /* dark blue text */
    /* background-c */
}
