body {
    display: flex;
    min-height: 100vh;
    min-width: 100vw;
    background: url("../images/background.jpg") no-repeat center center fixed, linear-gradient(#3a3a3a, #2e2e2e) no-repeat fixed ;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.cp-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(75, 75, 75, 0.3);
    justify-content: space-between;
}

.cp-header, .cp-footer {
    display: flex;
    height: 80px;
    width: 100%;
    padding: 16px;
    justify-content: space-between;
}

.cp-header-left, .cp-header-right, .cp-footer-left, .cp-footer-right {
    display: flex;
}

.cp-header-logo, .cp-footer-logo {
    object-fit: contain;
}

.cp-languages {
    display: flex;
    height: fit-content;
}

.cp-language {
    height: fit-content;
    padding: 2px 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: 200ms;
}

.cp-language:hover, .cp-active-language {
    color: #ccc;
}

.cp-main-content {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: calc(100% - 20px);
    margin: 0 10px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #252525;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    align-self: center;
    box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.5);
}

.cp-main-content svg {
    height: 48px;
    width: 48px;
    margin-bottom: 10px;
}

.cp-main-content .bi-x-circle-fill {
    color: #ff4765;
}

.cp-main-content .bi-info-circle-fill {
    color: #6089ff;
}

.cp-main-content h2 {
    color: #fff;
}

.cp-main-content p {
    margin-bottom: 2rem;
    color: #bbb;
}

.cp-button {
    padding: 8px 12px 8px 12px;
    background-color: #6089ff;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 200ms;
}

.cp-button:hover {
    background-color: #456fe7;
    color: #fff;
}

.cp-main-error-content {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #575757;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.5);
}

.cp-main-error-content h2 {
    color: #f55160;
}

.cp-main-error-content h3 {
    color: #f55160;
}

.cp-main-error-content p {
    margin-bottom: 2rem;
    color: #fff;
}
