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

body{
    background-color: #111;
    background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('/assets/img/background-loginform.jpg');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-blend-mode: normal;
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #006c35, #00a651);
    padding: 20px;
    border: none;
    color: white;
}

.header-strip{
    height: 3.5px;
    background: linear-gradient(
        90deg,
        #f7d774,
        #ffd700,
        #ffb300,
        #ffd700,
        #f7d774
    );
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0062cc;
    box-shadow: none;
}

.input-group-text {
    border: none;
    background: transparent;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    color: #666;
}

.input-group {
    position: relative;
}

.btn-login {
    padding: 12px 20px;
    background: linear-gradient(135deg, #006c35, #00a651);
    border: none;
    border-radius: 10px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

.social-login {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #eee;
    background: white;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-social i {
    margin-right: 10px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider span {
    padding: 0 15px;
}

.form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.password-toggle {
    cursor: pointer;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.register-link a {
    color: #006c35;
    font-weight: 500;
}

/* Logo icon */
.logo-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 98, 204, 0);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(0, 98, 204, 0.6);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 98, 204, 0);
    }
}

/* Hover glow effect */
.logo-icon:hover {
    color: #0062cc;
    text-shadow: 0 0 20px rgba(0, 98, 204, 0.8);
    transform: scale(1.15);
}