@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/* navbar */

* {
    font-family: "Cairo", sans-serif;
}

.navbar {
    background-color: #00ddb3 !important;
    font-size: medium;
    width: 90% !important;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0px 0px 10px 10px !important;
    z-index: 2;
}

.navbar-nav .nav-item {
    margin-right: 15px;
}

.navbar-nav .nav-item .nav-link {
    padding: 7px 10px;
}

.nav-link,
.text-white {
    color: #ffffff !important;
}

.div-log {
    background-color: #252541 !important;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 0px 10px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
}

.div-log img {
    width: 30px !important;
    align-items: center !important;
}

#logo2 {
    width: 90px;
    height: auto;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 6%;
}


/* carousel */

.carousel {
    margin-top: 150px !important;
}

.login {
    background-color: #00ddb3 !important;
    color: #ffffff;
}

.myicon {
    color: #00ddb3;
    font-size: 25px;
}

.myicon:hover {
    color: #ffffff;
}

.carousel-indicators button {
    height: 20px !important;
    width: 20px !important;
    border-radius: 50% !important;
    background-color: #00ddb3 !important;
}

.carousel-indicators button:hover {
    background-color: rgb(255, 255, 255) !important;
}

#carouselExampleCaptions {
    height: 75vh;
}

.carousel-caption h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 20px;
}

.carousel-caption {
    padding: 30px;
}

body {
    scroll-behavior: smooth;
}

section {
    height: 100vh;
}

#loginPage {
    background-color: #F4F4F4;
}

.login-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 100px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.login-container h4 {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 20px;
}

.login-container hr {
    border-top: 1px solid #dee2e6;
    margin: 20px 0;
}

.form-control {
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #009e83;
}

.btn-primary {
    width: 100%;
    border-radius: 5px;
    background-color: #009e83;
    border: none;
}

.btn-primary:hover {
    background-color: #009e83;
}

.forgot-password,
.register-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.forgot-password:hover,
.register-link:hover {
    text-decoration: underline;
}

.icon {
    border-radius: 0px 5px 5px 0px !important;
    border-left: none !important;
}

input {
    border-radius: 5px 0px 0px 5px !important;
}

label {
    font-size: 12px;
}

 ::placeholder {
    font-size: 11px;
}


/* form-container */

.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 700px;
    color: #6c757d;
}

.form-label {
    font-weight: bold;
}

.form-control:focus {
    box-shadow: none;
    border-color: #009e83;
}

.btn-primary {
    background-color: #009e83;
    border: none;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #009e83;
}

.custom-select {
    border: 1px solid #ced4da;
}

footer {
    background-color: rgba(0, 123, 255, 0.8);
    background-image: url('../img/water2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: #ffffff;
    padding: 20px;
}

body::-webkit-scrollbar {
    width: 14px;
    /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background color of the scrollbar track */
}

body::-webkit-scrollbar-thumb {
    background-color: #009e83;
    /* Color of the scrollbar thumb */
    border-radius: 10px;
    /* Rounded corners for the scrollbar thumb */
    border: 3px solid #f1f1f1;
    /* Space around the thumb for better appearance */
}