/* Custom CSS for Login Page */
body {
    background-image: url('../img/login-bg.png');
    background-color: #ffe6cb;
    font-family: Arial, sans-serif;
}

.container {
    height: 100vh;
}

.bg-primary {
    background-color: #611232 !important;
    background-size: cover;
    background-position: center;
}

h2, h3 {
    font-weight: bold;
}

p {
    font-size: 0.9rem;
    margin-top: 10px;
}

.img-fluid {
    max-width: 80%;
    height: auto;
}

.input-group-text {
    background-color: #e9ecef;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.btn-outline-secondary {
    border: none;
    background-color: transparent;
}

.shadow-lg {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

button:focus {
    outline: none;
    box-shadow: none;
}

.modal-content {
    border-radius: 10px;
}

/* Navbar Customization */
.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none;
    padding: 10px 0;
}

.navbar .navbar-brand {
    color: #611232 !important;
    font-weight: bold;
}

.navbar .navbar-brand:hover {
    color: #5a0e2e;
}

.navbar .btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
}

.navbar .btn-danger:hover {
    background-color: #c82333;
}

/* Adjust button text and icon */
.navbar .btn i {
    font-size: 1.2rem;
}
.navbar .btn span {
    font-size: 1rem;
}