/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

/* Container for the entire page */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    /* min-height: 100vh; */
    padding: 0 !important;
}

/* .carousel-item img{
height: 190px !important;
} */
/* Header section */
.header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.header-image {
    max-width: 100%;
    height: auto;
    width: 300px; /* Adjust the width as needed */
}

/* Login form section */
.login-form {
    background-color: #F3F6F9 !important ;
    /* color: white !important; */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.login-form h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: rgb(0, 0, 0) !important;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid #ced4da;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    background-color: #f9f9f9;
    color: #333;
  
}

.login-form .forgot-password {
    display: block;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
    font-size: 14px;
    text-align: right;
    text-decoration: none;
}

.login-form button {
    background-color: #e25a00;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #651070;
}

.registration-link {
    margin-top: 20px;
    font-size: 12px;
    color: rgb(0, 0, 0);
}

.registration-link a {
    /* color: #0f57f1; */
    text-decoration: none;
}
