body {
    background: linear-gradient(to right, #2b5876, #4e4376);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 400px;
}

.login-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #4e4376;
}

.btn-login {
    background-color: #4e4376;
    color: white;
}

.btn-login:hover {
    background-color: #2b5876;
}

.form-group label {
    font-weight: bold;
}

.text-center a {
    color: #4e4376;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.grid-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.grid-item:hover {
    background-color: #e2e6ea;
    transform: scale(1.05);
}

.grid-item i {
    font-size: 40px;
    color: #007bff;
}

.navbar .dropdown-toggle::after {
    display: none;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}
.logo {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.logo img {
    width: 250px;  
    height: 150px; 
}



