* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
    background: #ffffff;
    color: #212121;
}

#login-page {
    width: 100%;
    min-height: 100vh;
    padding: 36px 16px;
}

#logo-area {
    text-align: center;
    margin-bottom: 42px;
}

#logo-img {
    width: 180px;
    max-width: 60%;
}

#login-form-area {
    width: 100%;
}

#form-wrapper {
    width: 100%;
    max-width: 920px;
    min-height: 620px;

    margin: 0 auto;

    background-image: url('../images/tokopedia_login_background.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 110%;

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

#form {
    width: 400px;
    min-height: 500px;

    background: #ffffff;

    padding: 36px 32px 24px;

    border-radius: 10px;

    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

#form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 34px;
}

#form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #212121;
}

#form-header a,
#form-submit a,
#info-tambahan a {
    text-decoration: none;
    color: #03ac0e;
    font-weight: 700;
}

#form-header a {
    font-size: 14px;
}

#form-email {
    margin-bottom: 24px;
}

#form-email label {
    display: block;

    font-size: 13px;

    color: #6d7588;

    margin-bottom: 6px;
}

#form-email input {
    width: 100%;
    height: 52px;

    border: 1px solid #d6dfeb;

    border-radius: 8px;

    outline: none;

    font-size: 15px;

    color: #212121;

    padding: 0 14px;

    transition: 0.2s ease;
}

#form-email input:focus {
    border-color: #03ac0e;

    box-shadow: 0 0 0 3px rgba(3, 172, 14, 0.12);
}

#form-email p {
    font-size: 12px;
    color: #6d7588;
    margin-top: 6px;
}

#form-submit {
    margin-bottom: 24px;
}

#form-submit a {
    display: block;

    text-align: right;

    font-size: 13px;

    margin-bottom: 16px;
}

#form-submit button {
    width: 100%;
    height: 48px;

    border: none;

    border-radius: 8px;

    background: #03ac0e;

    color: #ffffff;

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

    cursor: pointer;

    transition: 0.2s ease;
}

#form-submit button:hover {
    background: #02940c;
}

#login-info {
    display: flex;
    align-items: center;

    margin: 24px 0 18px;
}

#login-info div:nth-child(1),
#login-info div:nth-child(3) {
    flex: 1;

    height: 1px;

    background: #d6dfeb;
}

#login-info div:nth-child(2) {
    padding: 0 14px;

    font-size: 13px;

    color: #6d7588;

    white-space: nowrap;
}

.login-by>div {
    height: 48px;

    border: 1px solid #d6dfeb;

    border-radius: 8px;

    margin-bottom: 10px;

    padding: 0 18px;

    display: grid;

    grid-template-columns: 32px 1fr 32px;

    align-items: center;

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

    color: #4a5568;

    cursor: pointer;

    transition: 0.2s ease;
}

.login-by>div:hover {
    background: #f7f9fc;
}

.login-by img {
    width: 26px;
    height: 26px;

    object-fit: contain;
}

.login-by div div:nth-child(2) {
    text-align: center;
}

#info-tambahan {
    margin-top: 18px;

    text-align: center;

    color: #6d7588;

    font-size: 14px;
}

/* =========================================
   ANIMASI STEP
========================================= */

.step-animate {
    animation: fadeSlide 0.28s ease;
}

@keyframes fadeSlide {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   OTP & PIN INPUT TEXT CENTER
========================================= */

.center-input {

    text-align: center !important;

    letter-spacing: 6px;

    font-size: 20px !important;

    font-weight: 600;
}

.center-input::placeholder {

    text-align: center;

    letter-spacing: normal;

    font-size: 15px;

    font-weight: 400;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    #login-page {
        padding: 28px 16px;
    }

    #logo-area {
        margin-bottom: 30px;
    }

    #form-wrapper {

        min-height: auto;

        background-size: 90%;

        background-position: center bottom;

        padding-bottom: 260px;
    }

    #form {
        width: 100%;
        max-width: 400px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    #login-page {
        padding: 24px 14px;
    }

    #logo-img {
        width: 150px;
    }

    #form-wrapper {
        background-image: none;
        padding-bottom: 0;
    }

    #form {
        width: 100%;
        min-height: auto;

        padding: 28px 22px 22px;

        box-shadow: none;

        border-radius: 0;
    }

    #form-header h2 {
        font-size: 22px;
    }

    #form-email input,
    #form-submit button,
    .login-by>div {
        height: 46px;
    }

    .center-input {

        font-size: 18px !important;

        letter-spacing: 4px;
    }
}