/* Custom styles for Identity pages */

/* Login page specific styles */
.login-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
}

/* Card styling */
.identity-card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.identity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

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

/* Input field styling and focus effects */
.form-floating .form-control {
    border-radius: 0.375rem;
    height: calc(3.5rem + 2px);
    line-height: 1.5;
}

.form-floating .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-floating label {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Button styling and hover effects */
.btn-primary {
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.3);
}

/* Link styling */
.identity-link {
    color: #0d6efd;
    transition: all 0.2s ease;
}

.identity-link:hover {
    color: #0a58ca;
    text-decoration: underline !important;
}

/* Card header styling */
.card-header {
    border-bottom: none;
}

.card-header i.bi {
    font-size: 1.75rem;
    display: inline-flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }
}