/* Resetting default browser styles */

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,
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;
}
/* Box sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li,
ol,
ul {
    list-style: none;
}

/* Global Typography */
body {
    font-family: "Poppins", sans-serif;
}

/* Links */

a {
    text-decoration: none;
}

:root {
    --blue-colour: #1c1e53;
    --gray-colour: #f4f6fc;
    --text-colur: #282938;
    --white-colour: #ffffff;
    --yellow-colour: #fcd980;

    --coco-colur: #ed9455;
    --light-coco-colur: #ffbb70;
    --more-light-coco-colur: #ffec9e;
}
video {
    width: 100%;
}

/* ============================= Custom CSS ==================== */

/* ============================= Navbar CSS ==================== */

.customNav {
    padding: 0px 0;
    background-color: var(--blue-colour);
    align-items: center;
}
.navbar__logo {
    width: 300px;
    height: auto;
    text-align: left;
}
.customItem {
    padding: 20px 10px;
    font-size: 20px;
    color: var(--blue-colour);
    transition: ease-in-out 0.1s;
}
.custombtn {
    padding: 7px 17px;
    margin: 0 4px;
    background-color: var(--blue-colour);
    border: 2px solid var(--gray-colour);
    outline: none;
    border-radius: 15px;
    transition: ease-in-out 0.2s;
    color: white;
    /* margin-bottom: 20px; */
}
.custombtn:hover {
    background-color: var(--more-light-coco-colur);
    color: black;
    border: 2px solid --gray-colour;
}
/* ============================= Navbar CSS ==================== */

/* ============================= Log in CSS ==================== */

#login__part {
    padding: 80px 0;
    background-image: url(../images/istockphoto-1320330053-1024x1024.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
}
.main {
    background-color: var(--gray-colour);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px 45px;
    transition: transform 0.2s;
    width: 450px;
    text-align: center;
}

.login__img {
    width: 180px;
}

input {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #4caf50;
    width: 100%;
    font-size: 18px;
}

.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-left: 40px;
}

.input-with-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.move__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ============================= Log in CSS ==================== */

/* ================================= footer Part ===================== */

#footerpart {
    background-color: var(--blue-colour);
    padding: 50px 50px 30px 50px;
}
#footerbottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.footerTopLeft__p {
    font-size: 16px;
    font-weight: 500;
}
.footerTopBottom h3 {
    font-size: 18px;
    font-weight: 500;
}
.footerTopBottom a {
    color: #1c1e53;
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
}
.footer__logo {
    height: 100px;
}
.footerLeftBottom {
    background-color: var(--yellow-colour);
    margin-top: 70px;
    padding: 15px 10px;
}
.footerRight__h3 {
    font-size: 48px;
    font-weight: 600;
}
.footerRight__p {
    font-size: 16px;
    font-weight: 400;
}
.icons {
    margin-top: 10px;
}
.icons a {
    padding: 10px;
    color: white;
}

/* ================================= footer Part ===================== */

#warning-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    background-color: lightcoral;
    padding: 10px;
    border: 1px solid red;
    z-index: 999;
    text-align: center;
    opacity: 0; /* Initially hide the element with opacity */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for showing/hiding */
}

#warning-message.show {
    opacity: 1; /* Set opacity to 1 to make it visible */
}
