/* Importing the custom font */
@font-face {
    font-family: 'EpiforestFont';
    src: url('fonts/epiforestwebb.woff2') format('woff2'),
         url('fonts/epiforestwebb.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'EpiforestFont', sans-serif; /* Applying your custom font */
    background-color: #e0f2e9; /* Light green background color */
}

/* Navbar */
.navbar {
    background-color: #e0f2e9; /* Light green background */
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #2c3e50; /* Dark font color */
}

.navbar .nav-link:hover {
    color: #1a252f; /* Darker shade on hover */
}
/* Logo Styling */
.logo {
    height: 40px; /* Adjust size as needed */
    margin-right: 10px;
    vertical-align: middle;
}

.login-card {
    background-color: #ffffff;
    width: 350px;
    border-radius: 8px;
}

.login-card h1 {
    color: #2c3e50;
}

.btn {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn:hover {
    background-color: #1a252f;
}


/* Introductory Section */
.intro-section {
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.intro-section h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-section p {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
}

.intro-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.intro-section ul li {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 10px;
}

.intro-section ul li i {
    color: #4CAF50; /* Green check icon */
    margin-right: 10px;
}

footer {
    background-color: #2c3e50;
    color: #ffffff;
}
