:root {
    --send-button-bg: white;
}

[data-theme='dark'] {
    --send-button-bg: black;
}

.auth-section {
    width: 100%;
    background: var(--bg-color);
}

.banner-container {
    width: 50%;
    height: calc(100vh - 80px);

    .banner {
        width: 100%;
        height: 100%;
        border-radius: 0.5rem;
    }
}

.auth {
    width: 50%;
    height: calc(100vh - 80px);
    background: var(--bg-color);
    display: flex;
    align-items: center;

    .header,
    .text {
        color: var(--text-color);
    }

    .header {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .text {
        margin-bottom: 24px;
    }
}

@media (max-width: 992px) {
    .banner-container,
    .auth {
        height: calc(100vh - 170px);
    }
}

.custom-input {
    background: var(--bg-color);
    border: 1px solid #393939;
    color: var(--text-color) !important;

    &:focus {
        background: var(--bg-color);
        border: 1px solid #393939;
    }

    &:read-only {
        background: gray;
    }

    &:disabled {
        background: gray;
    }
}

label {
    color: var(--text-color) !important;
    font-size: 14px;
}

.change-mode-button {
    display: block;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    outline: none;
    background: var(--bg-color);
    font-size: 14px;
    border: 1px solid #393939;
    color: var(--text-color);

    &:hover {
        background: #002a7e;
        border: 1px solid #002a7e;
        color: white;
    }
}

.change-mode-button.active {
    background: #003db7;
    border: 1px solid #003db7;
    color: white;
}

.send-button {
    padding: 14px 30px;
    border: none;
    outline: none;
    background: var(--bg-color-2);
    color: var(--text-color);
    border: 1px solid #393939;

    &:hover {
        background: #00b256;
        color: white;
    }
}

.submit-button {
    display: block;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    outline: none;
    background: #00b256;
    border: none;
    color: white;
    font-weight: 400;
    text-transform: uppercase;

    &:hover {
        background: #00833f;
    }
}

.msg {
    color: var(--text-color);
    font-size: 14px;
    text-align: center;
}

.link {
    display: block;
    width: max-content;
    color: var(--text-color);
    text-underline-offset: 8px;

    &:hover {
        color: rgb(119, 119, 215);
    }
}

@media (max-width: 1200px) {
    .banner-container {
        display: none;
    }

    .auth {
        width: 100%;
    }
}
