@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* **************************************** */
/* * Page */
/* **************************************** */
html,
body {
    overflow: auto;
}

body {
    min-height: 100vh;
}

.login-page-wrap {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px 72px;
}

.login-panel {
    width: 100%;
    max-width: 620px;
    text-align: center;
}

.login-panel h2 {
    font-size: 50px;
    line-height: 1.05;
    font-weight: bold;
    margin-bottom: 48px;
}
/* **************************************** */




/* **************************************** */
/* * Header */
/* **************************************** */
.login-header {
    width: 100%;
    background: var(--red);
    padding: 18px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.login-header h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.login-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.login-header-actions .create-campaign-btn,
.login-header-actions .my-account-btn {
    text-decoration: none;
}

.login-header-actions .create-campaign-btn {
    font-size: 16px;
    color: #fff;
    border: 3px solid #fff;
    padding: 7px 15px;
    border-radius: 6px;
    background: none;
    fill: #fff;
    font-weight: 600;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.login-header-actions .create-campaign-btn:hover {
    background: #fff;
    fill: var(--red);
    transition: .3s;
    cursor: pointer;
    color: var(--red);
}

.login-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-inline-icon svg {
    width: 16px;
    min-width: 16px;
    height: 16px;
}

.login-header-actions .my-account-btn {
    font-size: 16px;
    color: var(--red);
    background: #fff;
    border: 3px solid #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
}

.login-header-actions .my-account-btn:hover {
    background: transparent;
    color: #fff;
    fill: #fff;
    transition: .3s;
    cursor: pointer;
    text-decoration: none;
}
/* **************************************** */




/* **************************************** */
/* * Form */
/* **************************************** */
.login-form {
    width: 100%;
}

.login-form .form-group {
    margin-bottom: 28px;
}

.login-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 8px 8px 36px;
    flex-wrap: wrap;
}

.login-meta label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: #111;
}

.login-meta input[type="checkbox"] {
    margin: 0;
}

.login-meta a,
.login-signup a {
    color: var(--red);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.login-submit {
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: var(--red);
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    padding: 12px 10px;
    cursor: pointer;
    transition: background .2s ease;
}

.login-submit:hover {
    background: var(--danger-dark);
}

.login-signup {
    margin-top: 34px;
    font-size: 16px;
    color: #111;
}
/* **************************************** */




/* **************************************** */
/* * Feedback */
/* **************************************** */
.login-feedback {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    margin-bottom: 24px;
    border-radius: 6px;
    font-size: 16px;
    border: 1px solid transparent;
}

.login-feedback--error {
    color: #842029;
    background: #f8d7da;
    border-color: #f5c2c7;
}

.login-feedback--info {
    color: #055160;
    background: #cff4fc;
    border-color: #b6effb;
}
/* **************************************** */




/* **************************************** */
/* * Responsive */
/* **************************************** */
@media (max-width: 720px) {
    .login-header {
        padding: 18px 20px;
    }

    .login-header h1 {
        font-size: 28px;
    }

    .login-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .login-header-actions .create-campaign-btn,
    .login-header-actions .my-account-btn {
        flex: 1 1 180px;
        justify-content: center;
        text-align: center;
    }

    .login-panel h2 {
        margin-bottom: 32px;
    }

    .login-form .form-group > input {
        height: 64px;
        font-size: 20px;
    }

    .login-meta {
        margin: 4px 0 28px;
    }

    .login-meta label,
    .login-signup {
        font-size: 18px;
    }

    .login-submit {
        font-size: 30px;
        padding: 18px 16px;
    }
}
/* **************************************** */
