/* /css/auth.css */

/* CSS pre registračný formulár */
.auth-card {
    max-width: 500px;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
}

.card-header {
    background-color: #4B6C80;
    color: white;
    border-radius: 8px 8px 0 0 !important;
    padding: 1rem;
    font-weight: 500;
}

.card-body {
    padding: 2rem;
}

.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1rem;
    border-radius: 0 0 8px 8px !important;
}

.form-control:focus {
    border-color: #4B6C80;
    box-shadow: 0 0 0 0.25rem rgba(75, 108, 128, 0.25);
}

.btn-primary {
    background-color: #4B6C80;
    border-color: #4B6C80;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #3a5563;
    border-color: #3a5563;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-text {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

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

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.alert-success {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
}