/* Importing fonts from Google Fonts */
/* Importing fonts in a single request */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300&family=Josefin+Sans:wght@400;600;700&display=swap');

body {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5; /* Background color of the page */
}

.custom-button {
    background-color: #07559E;
    border: 2px solid #07559E;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Josefin Sans', sans-serif;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-button:hover {
    background-color: #06488C; /* Color on hover */
}

.custom-button:active {
    transform: scale(0.98); /* Click effect */
}

.instruction {
    font-size: 34px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.info-header h1 {
    font-size: 70px;
    font-weight: bold;
    color: #07559E;
    margin-bottom: 40px;
    text-align: center;
}

.alert-warning.pf-m-warning {
    /*margin-bottom: 7px;*/
    font-size: 18px;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 20px;
    color: #333;
    font-weight: normal;  /* ensure it's not bold */
}

.alert-success.pf-m-success {
    /*margin-bottom: 7px;*/
    font-size: 18px;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 20px;
    color: #333;
    font-weight: normal;  /* ensure it's not bold */
}

#kc-info-wrapper{
    margin-top: 15px;
}
