* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 0, 128, 0.25),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(130, 40, 255, 0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f58529,
            #dd2a7b,
            #8134af,
            #515bd4
        );

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 25px;
}

.page {
    width: 100%;
    max-width: 430px;
}

.login-card {
    background: white;
    border-radius: 18px;

    padding: 42px 38px 30px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.18);

    text-align: center;
}

.brand {
    font-size: 42px;
    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 8px;

    background:
        linear-gradient(
            45deg,
            #f58529,
            #dd2a7b,
            #8134af,
            #515bd4
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: #777;
    font-size: 14px;

    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input {
    width: 100%;

    height: 48px;

    border: 1px solid #dbdbdb;
    border-radius: 9px;

    background: #fafafa;

    padding: 0 14px;

    font-size: 14px;

    outline: none;

    transition: 0.2s;
}

input:focus {
    border-color: #a8a8a8;
    background: white;
}

form button {
    height: 46px;

    border: none;
    border-radius: 9px;

    margin-top: 5px;

    background:
        linear-gradient(
            90deg,
            #0095f6,
            #1877f2
        );

    color: white;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

form button:hover {
    filter: brightness(0.95);
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 25px 0;
}

.divider span {
    height: 1px;
    background: #dbdbdb;

    flex: 1;
}

.divider p {
    color: #8e8e8e;
    font-size: 12px;
    font-weight: 600;
}

.demo-button {
    width: 100%;
    height: 44px;

    border: 1px solid #dbdbdb;
    border-radius: 9px;

    background: white;

    color: #385185;

    font-weight: 600;

    cursor: pointer;
}

.forgot {
    display: block;

    margin-top: 22px;

    color: #385185;

    font-size: 13px;

    text-decoration: none;
}

.signup {
    border-top: 1px solid #efefef;

    margin-top: 30px;
    padding-top: 25px;

    color: #555;

    font-size: 14px;
}

.signup strong {
    color: #0095f6;
}

.demo-notice {
    text-align: center;

    color: white;

    font-size: 11px;

    margin-top: 15px;

    opacity: 0.9;
}

@media (max-width: 480px) {

    body {
        padding: 15px;
    }

    .login-card {
        padding: 35px 25px 25px;
    }

    .brand {
        font-size: 38px;
    }
}
