.div-init {
    background: white;
    min-height: 100vh;
    padding: 2rem !important;
}

.candidates-title {
    font-size: 24px;
    font-weight: 600;
    color: #000C4F;
}

.candidates-title-sub {
    font-size: 16px;
    font-weight: 400;
    color: #000C4F;
}

.slider-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.input-field {
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: #000C4F;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

.eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    z-index: 10;
}

.button-primary {
    background: #000C4F !important;
    border: none;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.button-primary:hover {
    background: #0056b3 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.form-check-input-primary:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.a-link-primary {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.a-link-primary:hover {
    color: #0056b3;
    text-decoration: underline;
}

.pink-color {
    color: #B61272 !important;
}

.required::after {
    content: "*";
    color: #ef4444;
    margin-left: 4px;
}

/* Carousel indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
}

.carousel-indicators button.active {
    background: white;
}

/* Modal */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 767px) {
    .div-init {
        padding: 1.5rem !important;
        min-height: 100vh;
    }

    .candidates-title {
        font-size: 1.5rem !important;
    }

    .candidates-title-sub {
        font-size: 0.9rem !important;
    }

    .input-field {
        height: 45px;
        font-size: 0.9rem;
    }

    .button-primary {
        height: 45px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .div-init {
        padding: 1rem !important;
    }

    .candidates-title {
        font-size: 1.25rem !important;
    }

    .input-field {
        height: 40px;
    }

    .button-primary {
        height: 40px;
    }
}
