﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #2c216a;
    font-family: 'Rubik', sans-serif;
}

.login-form {
    background: #fff;
    width: 500px;
    margin: 65px auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    border-radius: 4px;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
}

    .login-form h1 {
        padding: 35px 35px 0 35px;
        font-weight: 300;
    }

    .login-form .content {
        padding: 35px;
        text-align: center;
    }

    .login-form .input-field {
        padding: 12px 5px;
    }

        .login-form .input-field input {
            font-size: 16px;
            display: block;
            font-family: 'Rubik', sans-serif;
            width: 100%;
            padding: 10px 1px;
            border: 0;
            border-bottom: 1px solid #747474;
            outline: none;
            -webkit-transition: all .2s;
            transition: all .2s;
        }

            .login-form .input-field input::-webkit-input-placeholder {
                text-transform: uppercase;
            }

            .login-form .input-field input::-moz-placeholder {
                text-transform: uppercase;
            }

            .login-form .input-field input:-ms-input-placeholder {
                text-transform: uppercase;
            }

            .login-form .input-field input:-ms-input-placeholder {
                text-transform: uppercase;
            }

            .login-form .input-field input::placeholder {
                text-transform: uppercase;
            }

            .login-form .input-field input:focus {
                border-color: #222;
            }

    .login-form a.link {
        text-decoration: none;
        color: #747474;
        letter-spacing: 0.2px;
        text-transform: uppercase;
        display: inline-block;
        margin-top: 20px;
    }

    .login-form .action {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }

        .login-form .action button {
            width: 100%;
            border: none;
            padding: 18px;
            font-family: 'Rubik', sans-serif;
            cursor: pointer;
            text-transform: uppercase;
            background: #e8e9ec;
            color: #777;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 0;
            letter-spacing: 0.2px;
            outline: 0;
            -webkit-transition: all .3s;
            transition: all .3s;
        }

            .login-form .action button:hover {
                background: #d8d8d8;
            }

            .login-form .action button:nth-child(2) {
                background: #2d3b55;
                color: #fff;
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 4px;
            }

                .login-form .action button:nth-child(2):hover {
                    background: #3c4d6d;
                }

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: #000;
    overflow-x: hidden;
}

.bg-rectangle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13,110,253,0.78);
}

.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.content-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.left-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 16px;
}

.left-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: .95;
    margin: 0;
    max-width: 560px;
}

.features {
    margin-top: 25px;
    padding: 0;
    list-style: none;
}

    .features li {
        margin-bottom: 10px;
        font-size: 14px;
        display: flex;
        gap: 10px;
        align-items: center;
    }

.login-box {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 16px;
}

    .login-header h5 {
        margin: 0;
        font-weight: 600;
        font-size: 16px;
        white-space: nowrap;
    }

.login-box label {
    font-size: 13px;
    font-weight: 500;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin: 8px 0 18px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
}

    .login-box input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
    }

.login-box button {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    border: none;
    background: #0d6efd;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

    .login-box button:hover {
        opacity: .92;
    }

@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .left-content {
        text-align: center;
    }

    .left-logo {
        margin: 0 auto 12px;
        background-position: center;
    }

    .left-content p {
        margin: 0 auto;
    }

    .features li {
        justify-content: center;
    }
}

.left-content {
    flex: 1;
    color: #fff;
}
