﻿.license-expired {
    height: 100%;
    margin: 0;
    background-color: #001e50;
    background-image: url(https://static.plantanapp.com/platformdev/paa-background-no-color.png);
    color: white;
    background-blend-mode: multiply;
    background-size: cover;
    font-family: "Mulish", serif;
}

.mobile-container,
.desktop-container {
    display: none;
}

.desktop-header {
    position: absolute;
    top: 20px;
    right: 20px;
}

.desktop-header-image {
    width: 336px;
}

.logo {
    width: 124px;
}

.main-container {
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.center-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-section {
    position: relative;
    height: 158px;
}

.title-text {
    position: absolute;
    top: 44px;
    left: 80px;
}

.title {
    font-size: 34px;
    margin: 0;
}

.subtitle {
    font-size: 20px;
    margin: 4px;
}

.main-content {
    display: grid;
    grid-template-columns: 320px minmax(auto, 128px) 320px;
}

.main-image {
    align-self: stretch;
    width: 320px;
    margin-bottom: 16px;
}

.left-image {
    grid-area: 1 / 1 / 2 / 2;
}

.right-image {
    grid-area: 1 / 3 / 2 / 4;
}

.left-description {
    grid-area: 2 / 1 / 3 / 2;
}

.right-description {
    grid-area: 2 / 3 / 3 / 4;
}

.btn-continue-container {
    grid-area: 3 / 1 / 4 / 2;
    display: flex;
    justify-content: center;
}

.btn-activate-container {
    grid-area: 3 / 3 / 4 / 4;
    display: flex;
    justify-content: center;
}

.btn {
    padding: 10px;
    outline: 0;
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-primary {
    background-color: #009688;
    color: white;
}

.description {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
}

.mobile-header {
    display: flex;
    justify-content: flex-end;
}

.mobile-title {
    font-size: 34px;
    font-weight: 400;
}

.mobile-description {
    font-size: 14px;
}

.mobile-header-image {
    height: 46px;
    width: 168px;
}

@media screen and (min-device-width: 769px) {
    .desktop-container {
        display: flex;
        height: 100%;
        justify-content: center;
    }
}

@media screen and (max-device-width: 768px) {
    .mobile-container {
        box-sizing: border-box;
        display: flex;
        height: 100%;
        justify-content: space-between;
        flex-direction: column;
        padding: 26px;
    }
}
