html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: url('<?php echo base_url(); ?>assets/img/svci_cover.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.login-box h1 {
    text-align: center;
    font-family: 'Brush Script MT', cursive;
    margin-bottom: 25px;
}

.form-control {
    border-radius: 10px;
    padding: 10px;
}

.btn-login {
    background: linear-gradient(to bottom, #2da9f8, #007bff);
    color: white;
    border: none;
    border-radius: 10px;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.extra-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.9rem;
}

.extra-links a {
    color: #000;
    text-decoration: none;
}

.extra-links a:hover {
    text-decoration: underline;
}
.hidden {
    display: none;
}

.alert {
  transition: opacity 0.5s ease-in-out;
}