/** Fonts **/
@import url('../css/custom-font.css');
/* Overrides */
@import url('../css/overrides.css');
/* Defaults */

/* Reset */
html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100%;
    background: #0051ba;
    background-size: cover;
}

main {
    flex: 1;
}

/* Fixed header */
.login-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #0051ba;
    color: #f9f9f9;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Header title */
.app-name {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
}

.option-container {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 80px;
    padding-bottom: 80px;
}

.option-text {
    color: #F2F5F8;
    margin-bottom: 15px;
    font-weight: bold;
    margin: 0;
}

.button-container {

    padding: 20px;
    max-width: 400px;
    width: 90%;
    

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


@media (max-width: 480px) {
    .button-container {
        grid-template-columns: 1fr;
    }
}

#kc-social-providers a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #003a8f;
    background-color: #F2F5F8;
    font-weight: bold;
    transition: all 0.2s ease;
}

#kc-social-providers a:hover {
    background-color: #E3E7EE;
    color: #0051ba;
}

#kc-social-providers a.kumc-button {
    grid-column: span 2;
    font-size: 1.1em;
    padding: 14px 0;
    background-color: #f2a900;
    color: #003459;
}


/* Fixed footer */
.page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  border-top: 6px solid #ff0000;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  padding: 10px 0;
  box-sizing: border-box;
  z-index: 1000;
}
