
body {
    background: linear-gradient(135deg, #eef2f7, #f8fafc);
    font-family: 'Segoe UI', sans-serif;
}

.card {
    transition: 0.2s ease-in-out;
}

    .card:hover {
        transform: translateY(-2px);
    }
.register-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.97);
}

    .card input,
    .card select {
        border-radius: 10px;
        padding: 10px;
    }

    .card label {
        font-weight: 600;
        color: #333;
    }

.btn-primary {
    border-radius: 10px;
    font-weight: 600;
}

.alert {
    border-radius: 10px;
}
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.card-shadow {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.badge-role-manager {
    background-color: #198754;
    color: white;
}

.badge-role-employee {
    background-color: #0dcaf0;
    color: black;
}

.badge-role-admin {
    background-color: #dc3545;
    color: white;
}
.register-bg {
    min-height: 100vh;
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    /* Dark overlay for readability */
    .register-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.55);
    }

    /* Keep content above overlay */
    .register-bg .container {
        position: relative;
        z-index: 2;
    }