/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Roboto', 'Open Sans', sans-serif;
    color: #2c3e50;
    background-color: #fff;
}

/* Layout Components */
.opsmx-container {
    display: flex;
    min-height: 100vh;
    flex-direction: row;
}

/* Left Section - Branding */
.opsmx-left-section {
    width: 60%;
    background: #f1f1f1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.opsmx-left-section h1 {
    font-size: 28px;
    color: #242b37;
    margin: 20px 0 10px;
    text-align: center;
}

.opsmx-left-section p {
    font-size: 14px;
    color: #242b37;
    max-width: 500px;
    text-align: center;
}

.opsmx-illustration {
    margin-top: 40px;
    max-width: 550px;
    width: 100%;
    height: auto;
}

/* Right Section - Login Form */
.opsmx-right-section {
    width: 40%;
    background: #242b37;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.opsmx-form-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.opsmx-logo {
    width: 200px;
    margin-bottom: 30px;
}

.opsmx-login-form {
    width: 100%;
    max-width: 380px;
    padding: 40px 40px 30px 40px;
    border: 2px solid #444c57;
    border-radius: 20px;
    background: transparent;
}

.opsmx-heading {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

/* Form Elements */
.opsmx-form-group {
    margin-bottom: 15px;
}

.opsmx-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #555;
    border-radius: 6px;
    font-size: 14px;
    background: #1a1f28;
    color: #ffffff;
    transition: border-color 0.2s ease;
}

.opsmx-input::placeholder {
    color: #888;
}

.opsmx-input:focus {
    outline: none;
    border-color: #009bfa;
}

/* Buttons */
.opsmx-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.opsmx-btn-primary {
    background: #009bfa;
    color: #ffffff;
    border: 1px solid #009bfa;
}

.opsmx-btn-primary:hover {
    background: #0086d9;
    border-color: #0086d9;
}

.opsmx-btn-primary:active {
    background: #0072b8;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .opsmx-container {
        flex-direction: column;
    }

    .opsmx-left-section,
    .opsmx-right-section {
        flex: none;
        width: 100%;
        padding: 30px 20px;
    }

    .opsmx-left-section {
        order: 2;
        text-align: center;
    }

    .opsmx-left-section h1 {
        font-size: 22px;
    }

    .opsmx-right-section {
        order: 1;
    }

    .opsmx-illustration {
        margin: 20px auto 0;
        max-width: 90%;
    }

    .opsmx-login-form {
        padding: 30px 25px 25px 25px;
    }
}
