/* Auth pages custom CSS */
.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #cbd5e0;
    height: 1rem;
    width: 1rem;
    background-color: #fff;
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}

.form-checkbox:checked {
    background-color: #4299e1;
    border-color: #4299e1;
}

.form-checkbox:checked::before {
    content: '';
    position: absolute;
    top: 0.2rem;
    left: 0.35rem;
    height: 0.4rem;
    width: 0.2rem;
    border-style: solid;
    border-color: white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Custom animation for messages */
.message-animation {
    animation: fade-in 0.3s ease-in-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .flex-between {
        flex-direction: column;
        gap: 1rem;
    }
} 