.message {
    background-color: var(--primary-dark);
    color: white;
    text-align: center;
    height: 2.2rem;
    font-size: 1.2rem;
}

.resource-container {
    display: flex;
    min-height: 90vh;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5vh 10vw;
    background-color: rgb(248, 247, 245);
}

.resource-container .left {
    height: 100%;
    width: 20vw;
}

.resource-container .left .title p {
    font-size: 1.6rem;
    font-weight: 700;
}

.resource-container .left .modules .active-link {
    color: var(--primary);
}

.resource-container .right {
    background-color: rgb(255, 255, 255);
    min-height: 60vh;
    width: 40vw;
    border-radius: 0.6em;
    box-shadow: 0 0 0px 1px rgb(228, 228, 228);
    padding: 2rem;
}

.resource-container .right .title {
    font-size: 1.6rem;
    font-weight: 700;
}

.resource-container .right .content iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0.6em;
}

.resource-container .cta {
    width: 15vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resource-container .cta .headline {
    text-align: center;
    font-size: 1.3rem;
    font-family: Poppins, Nunito, Arial, Helvetica, sans-serif;
    font-weight: 900;
}

.resource-container .cta .label {
    font-size: 0.7rem;
    margin: 0.8rem 0 0.2rem 0;
}

.resource-container .cta input {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    padding-left: 10px;
    font-size: 0.9rem;
    background-color: rgb(236, 236, 236);
    border: 1px solid gray;
    border-radius: 6px;
    color: rgb(0, 0, 0);
    text-indent: 0;
}

.resource-container .cta .between {
    display: flex;
    justify-content: space-between;
}

.resource-container .cta .between .under {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.resource-container .cta .button {
    margin-top: 32px;
    height: 50px;
    box-sizing: border-box;
    padding: 0;
    text-align: center;
    background-color: rgb(250, 229, 127);
    border: 3px solid rgb(0, 0, 0);
    border-radius: 12px;
    color: rgb(0, 0, 0);
    font-size: 32px;
}

.resource-container .cta .button:hover {
    cursor: pointer;
}