@font-face {
    font-family: EncodeSansSemiExpanded;
    src: url("fonts/EncodeSansSemiExpanded-Regular.ttf");
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    max-height: 100%;
    background: #5271FF;
    float: left;
    width: 100%;
    color: white;
}

#all {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%
}

#brand {
    font-family: EncodeSansSemiExpanded;
    font-size: xx-large;    
    padding-top: 20px;
    padding-left: 20px;
}

#content {
    flex-grow: 1;
    display: flex;
    align-items: stretch;
}

#left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#img {
    content: url("blob.png");
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    opacity: 0.8;
}

#text {
    font-family: EncodeSansSemiExpanded;
    font-size: 10vh;
    text-align: center;
}

#login, #set_campaign {
    color: #5271FF;
    height: 48px;
    width: 175px;
    border-radius: 24px;
    font-size: 24px;
    line-height: 46px;
    border: none;
    background-color: white;
    text-align: center;
    font-family: EncodeSansSemiExpanded;
}

#campaignSelection {
    height: 48px;
    border-radius: 24px;
    font-size: 24px;
    line-height: 46px;
    border: none;
    text-align: center;
    font-family: EncodeSansSemiExpanded;
}

#campaignSelect {
    color: #5271FF;
    height: 48px;
    width: 175px;
    border-radius: 24px;
    font-size: 24px;
    line-height: 46px;
    border: none;
    margin-bottom: 30px;
    background-color: white;
    text-align: center;
    font-family: EncodeSansSemiExpanded;
}

/* ── Error page ── */

#error-box {
    text-align: center;
    max-width: 480px;
    padding: 0 20px;
}

#error-title {
    font-family: EncodeSansSemiExpanded;
    font-size: 3.2vh;
    font-weight: bold;
    margin-bottom: 12px;
    color: #FFD166;
}

#error-message {
    font-family: EncodeSansSemiExpanded;
    font-size: 2.2vh;
    line-height: 1.5;
    opacity: 0.9;
}

#error-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

#contact-link {
    color: white;
    height: 48px;
    width: 220px;
    border-radius: 24px;
    font-size: 20px;
    line-height: 48px;
    border: 2px solid white;
    background-color: transparent;
    text-align: center;
    font-family: EncodeSansSemiExpanded;
    text-decoration: none;
}

#contact-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
}