/* Custom styles for Testiqo */

/* Base layout */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

/* Card animations */
.card {
    @apply transition-all duration-300 ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    @apply shadow-lg;
}

/* Form icon buttons */
.join-item.btn {
    @apply bg-base-200 border-base-300 hover:bg-base-200;
}

/* Password requirements list */
.password-requirements {
    @apply space-y-1 text-sm text-base-content/60;
}

.password-requirements li {
    @apply flex items-center gap-2;
}

/* Alert styling */
.alert {
    @apply rounded-lg;
}

.alert-error {
    @apply text-error-content;
}

/* Link hover effects */
.link-hover {
    @apply transition-colors duration-200;
}

/* Icon spacing in buttons */
.btn i {
    @apply mr-2;
}

/* Form validation */
.input-error {
    @apply border-error focus:border-error;
}

.label-text-alt.text-error {
    @apply text-sm;
}

/* Authentication forms styling */
.auth-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.auth-card .card-body {
    padding: 2.5rem;
}

.auth-card .card-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.auth-card .form-label {
    font-weight: 500;
    color: #495057;
}

.auth-card .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.auth-card .form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.auth-card .btn-primary {
    padding: 0.75rem;
    font-weight: 500;
    border-radius: 8px;
    background-color: #4a90e2;
    border-color: #4a90e2;
    transition: all 0.3s ease;
}

.auth-card .btn-primary:hover {
    background-color: #357abd;
    border-color: #357abd;
    transform: translateY(-1px);
}

.auth-card .card-footer {
    background-color: #f8f9fa;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.auth-card .form-text ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.auth-card .form-text li {
    margin-bottom: 0.25rem;
    color: #6c757d;
}

.auth-card .alert {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.auth-card .form-check-label {
    color: #495057;
}

.auth-card a {
    color: #4a90e2;
    transition: color 0.3s ease;
}

.auth-card a:hover {
    color: #357abd;
    text-decoration: none;
} 