/* Common styles for all identity pages */
.identity-card {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin-bottom: 2rem;
    overflow: hidden;
}

button{
    border-color: transparent;
}

.identity-card-header {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.identity-card-body {
    padding: 2rem;
}

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

.identity-page-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 400;
}

.identity-form-group {
    margin-bottom: 1.5rem;
}

.identity-form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.identity-form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.identity-alert {
    position: relative;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.identity-alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

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

.identity-alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .identity-card-body {
        padding: 1.5rem;
    }
    
    .identity-page-title {
        font-size: 1.75rem;
    }
    
    .identity-page-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .identity-card-body {
        padding: 1rem;
    }
    
    .identity-page-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}
