* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: #1d1d1f;
    color: #f5f5f7;

    min-height: 100vh;
}


/* =========================
   TOP BAR
========================= */

.topbar {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    background: #1d1d1f;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;

    font-size: 28px;
    font-weight: 600;

    border: 2px solid #f5f5f7;
    border-radius: 3px;

    padding: 2px 7px;
}

.logo-icon {
    font-size: 18px;
}

.top-dot {
    font-size: 22px;
}


/* =========================
   MAIN
========================= */

.page {
    min-height: calc(100vh - 70px);

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 40px;
}


/* =========================
   LOGIN CARD
========================= */

.login-card {
    width: 770px;
    max-width: calc(100% - 32px);

    min-height: 700px;

    background: #1f1f21;

    border-radius: 28px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(255,255,255,.025);

    padding: 48px 108px 45px;

    text-align: left;
}


/* =========================
   CLOUD SYMBOL
========================= */

.cloud-symbol {
    width: 190px;
    height: 190px;

    margin: 0 auto 28px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-center {
    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: #1f1f21;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 60px;

    position: relative;
    z-index: 5;
}


/* colored dotted rings */

.orbit {
    position: absolute;

    border-radius: 50%;

    border: 8px dotted;

    opacity: .9;
}

.orbit-1 {
    width: 150px;
    height: 150px;

    border-color: #8bc8ff;

    transform: rotate(15deg);
}

.orbit-2 {
    width: 170px;
    height: 170px;

    border-color: #cf8cff;

    transform: rotate(80deg);
}

.orbit-3 {
    width: 135px;
    height: 135px;

    border-color: #ff9f9f;

    transform: rotate(145deg);
}


/* =========================
   TITLE
========================= */

h1 {
    text-align: center;

    font-size: 35px;
    line-height: 1.15;

    font-weight: 650;

    margin-bottom: 38px;

    letter-spacing: -1px;
}


/* =========================
   INPUT
========================= */

.form {
    width: 100%;
}

input {
    width: 100%;

    height: 68px;

    background: #242426;

    border: 1px solid #737378;

    border-radius: 14px;

    padding: 0 19px;

    color: white;

    font-size: 21px;

    outline: none;

    transition:
        border-color .2s,
        box-shadow .2s;
}

input::placeholder {
    color: #99999f;
}

input:focus {
    border-color: #6caeff;

    box-shadow:
        0 0 0 3px rgba(70,130,220,.2);
}


/* =========================
   LINKS
========================= */

a {
    color: #2684ff;

    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.create-account {
    display: inline-block;

    margin-top: 15px;

    font-size: 17px;
}


/* =========================
   INFORMATION
========================= */

.info {
    display: flex;

    gap: 15px;

    margin-top: 40px;

    color: #e5e5e7;
}

.info-icon {
    font-size: 36px;

    min-width: 40px;
}

.info p {
    font-size: 15px;

    line-height: 1.35;

    font-weight: 500;
}

.info a {
    white-space: nowrap;
}


/* =========================
   BUTTONS
========================= */

.buttons {
    display: flex;

    gap: 12px;

    margin-top: 38px;
}

button {
    height: 55px;

    border-radius: 10px;

    border: none;

    font-size: 17px;

    cursor: pointer;
}

.continue {
    flex: 1;

    background: #28539a;

    color: #999;

    cursor: default;
}

.continue.active {
    background: #3976d6;

    color: white;

    cursor: pointer;
}

.phone-btn {
    flex: 1;

    background: #f5f5f7;

    color: #202023;

    font-weight: 500;
}

.phone-btn:hover {
    background: #fff;
}


/* =========================
   REQUIREMENT
========================= */

.requirement {
    text-align: center;

    margin-top: 14px;

    font-size: 14px;

    color: #e0e0e2;
}


/* =========================
   MESSAGE
========================= */

.message {
    position: fixed;

    left: 50%;
    bottom: 25px;

    transform: translate(-50%, 100px);

    background: #f5f5f7;

    color: #1d1d1f;

    padding: 14px 22px;

    border-radius: 12px;

    font-size: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,.3);

    transition: transform .3s ease;

    z-index: 100;
}

.message.show {
    transform: translate(-50%, 0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .login-card {
        padding: 40px 60px;
    }

    h1 {
        font-size: 30px;
    }
}


@media (max-width: 600px) {

    .topbar {
        height: 60px;
    }

    .logo {
        font-size: 23px;
    }

    .page {
        padding-top: 20px;
    }

    .login-card {
        min-height: auto;

        padding: 35px 24px;

        border-radius: 20px;
    }

    .cloud-symbol {
        width: 150px;
        height: 150px;
    }

    h1 {
        font-size: 27px;
        margin-bottom: 28px;
    }

    input {
        height: 60px;
        font-size: 17px;
    }

    .buttons {
        flex-direction: column;
    }

    .continue,
    .phone-btn {
        width: 100%;
    }

    .info {
        margin-top: 30px;
    }
}