/* Custom style for the signup checkbox, based on Bootstrap's default */
.custom-signup-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.custom-signup-check .form-check-input {
    width: 1.0em;
    height: 1.0em;
    border-radius: 0.25em;
    border: 2px solid #344767;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-top: 0;
    box-shadow: none;
    appearance: auto; /* <-- Add this line */
    -webkit-appearance: auto; /* For Safari */
    outline: none;
}
.custom-signup-check .form-check-input:checked {
    background-color: #344767;
    border-color: #344767;
}
.custom-signup-check .form-check-label {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #344767;
}

/* Login button hover effect */
.login-btn {
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.login-btn:hover {
    background: linear-gradient(45deg, #e63900, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.login-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.login-btn:hover:before {
    left: 100%;
}
