* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #4d5563;
}

.login-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 68% 45%, rgba(255,255,255,.95), rgba(230,232,238,.45) 35%, transparent 55%),
        linear-gradient(135deg, #f4f4f5 0%, #d9dce3 55%, #c8ccd5 100%);
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    overflow: hidden;
}

.login-panel {
    max-width: 540px;
    margin-left: 14vw;
    z-index: 2;
}

.login-panel h1 {
    font-size: 72px;
    font-weight: 300;
    margin: 0 0 16px;
    color: #596171;
}

.login-panel p {
    font-size: 22px;
    margin: 0 0 48px;
}

.login-panel input[type="text"],
.login-panel input[type="password"],
.login-panel input[name="username"] {
    width: 100%;
    height: 64px;
    margin-bottom: 18px;
    padding: 0 24px;
    border-radius: 14px;
    border: 1px solid rgba(100,110,130,.28);
    background: rgba(255,255,255,.50);
    color: #4d5563;
    font-size: 17px;
    outline: none;
}

.login-panel input:focus {
    border-color: rgba(160,170,190,.75);
    box-shadow: 0 0 0 3px rgba(160,170,190,.18);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0 28px;
    font-size: 15px;
}

.login-options a {
    color: #71809a;
    text-decoration: none;
}

button {
    width: 100%;
    height: 62px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #9299aa, #6f778a);
    color: white;
    font-size: 21px;
    cursor: pointer;
}

.status {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(110,120,140,.2);
    text-align: center;
    color: #687283;
    line-height: 1.8;
}

.dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #9a9a9a;
    border-radius: 50%;
    margin-right: 8px;
}

.error {
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(190,60,60,.12);
    color: #9a2d2d;
}

.pepper-stage {
    position: relative;
    height: 100vh;
}

.pepper-stage img {
    position: absolute;
    right: 14vw;
    bottom: 3vh;
    max-height: 88vh;
    max-width: 44vw;
}

@media (max-width: 900px) {
    .login-page {
        grid-template-columns: 1fr;
    }

    .login-panel {
        margin: 40px auto;
        width: calc(100% - 40px);
    }

    .login-panel h1 {
        font-size: 54px;
    }

    .pepper-stage {
        display: none;
    }
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 86px;
}

.reveal-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: auto;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 14px;
    background: rgba(110,119,138,.22);
    color: #596171;
}
