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

body {
    min-height: 100vh;
    background: #eeeeee;

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


/* MAIN WINDOW */

.window {
    width: 98%;
    max-width: 1500px;

    min-height: 760px;

    background: white;

    border: 1px solid #c9c9c9;
    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}


/* TITLE BAR */

.title-bar {
    height: 76px;

    background: #ffffff;

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

    padding: 0 25px;

    border-bottom: 1px solid #d5d5d5;
}

.title {
    font-size: 25px;
    color: #171717;

    display: flex;
    align-items: center;
    gap: 15px;
}

.cart {
    color: #087d35;
    font-size: 30px;
}

.window-buttons {
    display: flex;
    gap: 32px;

    font-size: 30px;
}

.window-buttons span {
    cursor: pointer;
}


/* MAIN */

.main {
    display: flex;

    min-height: 720px;
}


/* LEFT PANEL */

.left-panel {
    width: 48%;

    background: linear-gradient(
        180deg,
        #087d35,
        #086d30
    );

    color: white;

    text-align: center;

    padding-top: 55px;

    position: relative;
}

.shield {
    font-size: 70px;

    margin-bottom: 20px;
}

.left-panel h1 {
    font-size: 40px;

    margin-bottom: 22px;
}

.left-panel p {
    font-size: 23px;

    line-height: 1.6;
}


/* DESK */

.desk {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    height: 315px;

    background: #a96127;
}


/* PLANT */

.plant {
    position: absolute;

    left: 60px;
    bottom: 85px;

    font-size: 120px;
}


/* MONITOR */

.monitor {
    position: absolute;

    left: 28%;

    bottom: 70px;

    width: 50%;
}

.screen {
    width: 100%;

    height: 190px;

    background: #151b22;

    border-radius: 10px;

    padding: 8px;

    box-shadow: 0 5px 15px rgba(0,0,0,.4);
}

.dashboard-top {
    height: 25px;

    background: #087dce;

    color: white;

    padding: 5px;

    font-size: 10px;

    text-align: left;
}

.dashboard-content {
    display: flex;

    height: 150px;

    background: white;

    color: #333;
}

.sidebar {
    width: 27%;

    background: #f4f4f4;

    font-size: 8px;

    text-align: left;

    padding: 10px;
}

.sidebar div {
    padding: 7px 0;
}

.dashboard {
    flex: 1;

    padding: 10px;

    text-align: left;
}

.dashboard h4 {
    font-size: 12px;

    margin-bottom: 15px;
}

.bars {
    display: flex;

    align-items: end;

    height: 65px;

    gap: 8px;
}

.bars i {
    width: 15px;

    background: #22a65a;

    border-radius: 2px 2px 0 0;
}

.bars i:nth-child(1) {
    height: 25px;
}

.bars i:nth-child(2) {
    height: 40px;
}

.bars i:nth-child(3) {
    height: 30px;
}

.bars i:nth-child(4) {
    height: 55px;
}

.bars i:nth-child(5) {
    height: 70px;
}

.cards {
    display: flex;

    gap: 8px;

    margin-top: 8px;
}

.cards div {
    width: 30%;

    height: 25px;

    background: #eeeeee;

    border-radius: 3px;
}

.monitor-stand {
    width: 80px;
    height: 45px;

    background: #1b2025;

    margin: auto;
}

.keyboard {
    position: absolute;

    width: 300px;
    height: 35px;

    bottom: 35px;

    left: 31%;

    background: #20252a;

    border-radius: 5px;
}

.mouse {
    position: absolute;

    width: 50px;
    height: 30px;

    bottom: 38px;
    right: 15%;

    background: #20252a;

    border-radius: 50%;
}


/* RIGHT PANEL */

.right-panel {
    width: 52%;

    background: #f7faf8;

    padding: 42px 50px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* LOGIN CARD */

.login-card {
    width: 100%;

    max-width: 700px;

    background: white;

    border: 1px solid #dedede;

    border-radius: 12px;

    padding: 42px;

    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}


/* LABELS */

.login-card > label {
    display: block;

    font-size: 20px;

    font-weight: bold;

    margin-bottom: 10px;
}


/* INPUT */

.input-box {
    height: 70px;

    border: 2px solid #d5d5d5;

    border-radius: 8px;

    display: flex;

    align-items: center;

    padding: 0 18px;

    margin-bottom: 35px;

    gap: 15px;
}

.input-box.username {
    border-color: #087d35;
}

.input-box span {
    font-size: 22px;
}

.input-box input {
    border: none;

    outline: none;

    flex: 1;

    font-size: 19px;
}

.input-box input::placeholder {
    color: #999;
}

.eye {
    cursor: pointer;
}


/* SHOW PASSWORD */

.show-password {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    font-size: 18px;
}

.show-password input {
    width: 22px;
    height: 22px;
}


/* BUTTONS */

button {
    width: 100%;

    height: 62px;

    border: none;

    border-radius: 7px;

    font-size: 20px;

    cursor: pointer;

    transition: .2s;
}

.login-btn {
    background: #087d35;

    color: white;

    font-weight: bold;

    margin-bottom: 15px;
}

.login-btn:hover {
    background: #06652b;
}

.back-btn {
    background: #e7e7e7;

    color: #222;

    margin-bottom: 32px;
}

.back-btn:hover {
    background: #d8d8d8;
}


/* FORGOT PASSWORD */

.forgot {
    display: block;

    text-align: center;

    color: #087d35;

    text-decoration: none;

    font-size: 18px;
}

.forgot:hover {
    text-decoration: underline;
}


/* FOOTER */

footer {
    height: 70px;

    border-top: 1px solid #d4d4d4;

    background: #f8faf9;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;

    color: #333;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .main {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
    }

    .left-panel {
        min-height: 550px;
    }

    .right-panel {
        padding: 30px;
    }

}


@media (max-width: 600px) {

    .title {
        font-size: 15px;
    }

    .window-buttons {
        gap: 12px;
        font-size: 20px;
    }

    .left-panel h1 {
        font-size: 30px;
    }

    .left-panel p {
        font-size: 17px;
    }

    .login-card {
        padding: 25px;
    }

    .desk {
        transform: scale(.8);
        transform-origin: bottom center;
    }

}