/* Hide unwanted elements on Identity pages */
.identity-page .form-check {
    display: none !important; /* Remember me checkbox */
}

.identity-page p {
    display: none !important; /* Hide all paragraphs (forgot password links, etc.) */
}

.identity-page .col-md-6 {
    display: none !important; /* Hide external login section */
}

/* Show only validation summary paragraphs */
.identity-page .text-danger {
    display: block !important;
}

/* Center the login form */
.identity-page .container > .row {
    justify-content: center;
}

.identity-page .col-md-4 {
    max-width: 400px;
    margin: 0 auto;
}

/* Clean styling for the login form */
.identity-page h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
}

/* Add some spacing */
.identity-page .container {
    padding-top: 2rem;
}