
/** Style for the title */
.isambard-title {
    color: black;
    font-size: 2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    align-self: center;
}

/** Style for the choose a provider line */
.isambard-provider {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: black;
}

/** Style for the help text at the bottom */
.isambard-help {
    padding: 10px;
    align-content: center;
    font-size: small;
}

/** Style for the div holding the links */
.isambard-idp-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/** Style for each item in the container */
.isambard-idp-item {
    margin: 0.5rem;
    padding: 0.5rem;
    border: 1px solid grey;
    border-radius: 5px;
    color: black;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
}

/** Style for the IdP links */
.isambard-idp {
    margin: 0.5rem;
    padding: 0.5rem;
}

.pf-v5-c-login__main-header {
    margin: 0;
    padding: 0.2rem;
}

.pf-v5-c-login__main-footer {
    margin: 0;
    padding: 0.2rem;
}

#kc-content {
    padding: 0.2rem;
}

/* Centers the login form on the page */
.pf-v5-c-login__container {
    grid-template-areas: "main";
    grid-template-columns: 40rem;
    text-align: center;
}

.pf-v5-c-login {
    width: 100%;
}

.pf-v5-c-login__main {
    margin: 0;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    box-shadow: 0 0 20px rgba(105, 152, 215, 0.7), 0 0 40px rgba(105, 152, 215, 0.7), 0 0 60px rgba(105, 152, 215, 0.7);
    transition: box-shadow 0.3s;
}

.pf-v5-c-form__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-block-end: var(--pf-v5-c-form__actions--MarginBottom);
    margin-block-start: var(--pf-v5-c-form__actions--MarginTop);
    margin-inline-end: var(--pf-v5-c-form__actions--MarginRight);
    margin-inline-start: var(--pf-v5-c-form__actions--MarginLeft);
}

/* Provides the cover background image */
.login-pf body {
    background: url("../img/BriCS_brain.png"), linear-gradient(rgb(0,0,0), rgb(32, 46, 91));
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/** Style the form itself */
.isambard-form-input {
}

/** input text box */
.isambard-form-input {
    width: 100%;
    padding: 6px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
}

.isambard-footer {
    background-color: #3333;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.isambard-footer-item {
    padding: 0 15px;
    margin: 0.5rem;
    font-size: small;
    text-align: center;
}

a {
    color: rgb(32, 46, 91);
    font-weight: bold;
}

@media (max-width: 600px) {
    .isambard-footer {
        flex-direction: column;
        align-items: center;
    }
}
