/* Index CSS */

body {
    background-color: #29323c;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
   padding: 100px 10px 10px 10px;
    border: none;
}

.login-card {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    background: #fff;
    border: none;
}

.card-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
    border-bottom: 2px solid #eee;
}

.card-body {
    padding: 1.5rem;
}

.form-control {
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    transition: border 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #2575fc;
    box-shadow: 0 0 0 0.2rem rgba(37, 117, 252, 0.5);
}

.btn-primary {
    background-color: #2575fc;
    border-color: #2575fc;
    border-radius: 8px;
    padding: 0.6rem;
    font-size: 1.1rem;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e65d1;
    border-color: #1e65d1;
}

.alert-danger {
    font-weight: 600;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    margin-top: 1rem;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #555;
    font-size: 0.9rem;
}

.footer a {
    color: #2575fc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

h4 {
    font-size: 18px; /* Default font size */
    text-align: center; /* Align text to center */
    padding: 10px; /* Add padding around the text */
}

/* For medium-sized screens and above (e.g., tablets and desktops) */
@media (min-width: 768px) {
    h4 {
        font-size: 20px;
    }
}

/* For large screens (e.g., desktops and larger devices) */
@media (min-width: 1024px) {
    h4 {
        font-size: 22px;
    }
}

/* For very large screens (e.g., large desktops or monitors) */
@media (min-width: 1440px) {
    h4 {
        font-size: 24px;
    }
}
