html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.logo {
    font-weight: 700;
}

.hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    background-size: 400% 400%;
    animation: hero-slide 15s ease infinite;
    color: #fff;
}

@keyframes hero-slide {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-primary {
    background-color: #0066ff;
    border-color: #0066ff;
}

.btn-primary:hover {
    background-color: #0056d6;
    border-color: #0056d6;
}

.card-job {
    min-width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-job:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    font-size: 0.875rem;
    background-color: #343a40;
    color: #fff;
    margin-top: auto;
    width: 100%;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
}

.navbar-custom {
    background: linear-gradient(90deg, #004aad, #27c0f3);
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: #fff !important;
}

.auth-card {
    max-width: 400px;
}

main {
    flex: 1 0 auto;
}

.password-toggle {
    cursor: pointer;
    color: #6c757d;
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 20px;
    }

    .card-job {
        min-width: 100%;
    }
}
