.sdw-login-body {
    margin: 0;
    min-height: 100vh;
    background: #f4f6f9;
    color: #010000;
    font-family: Arial, sans-serif;
}

.sdw-login {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}

.sdw-login-info {
    background: #010000;
    color: #ffffff;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 12px solid #009889;
}

.sdw-login-brand {
    font-size: 18px;
    font-weight: 700;
    color: #f5df0c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.sdw-login-info h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.sdw-login-info p {
    font-size: 20px;
    margin-top: 12px;
    color: #d9dee3;
}

.sdw-login-meta {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 24px;
    font-size: 15px;
    color: #d9dee3;
}

.sdw-login-form-area {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-left: 1px solid #cfd6dc;
}

.sdw-login-form-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sdw-login-form-subtitle {
    color: #4f5b62;
    margin-bottom: 32px;
}

.sdw-login-form label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.sdw-login-form .form-control {
    border-radius: 0;
    min-height: 46px;
    border: 1px solid #cfd6dc;
    box-shadow: none;
}

.sdw-login-form .form-control:focus {
    border-color: #009889;
    box-shadow: none;
}

.sdw-login-form .btn {
    border-radius: 0;
    min-height: 46px;
    font-weight: 700;
    background: #009889;
    border-color: #009889;
}

.sdw-login-form .btn:hover {
    background: #00796d;
    border-color: #00796d;
}

.sdw-login-error {
    background: #df4190;
    color: #ffffff;
    padding: 12px 14px;
    margin-bottom: 20px;
}

.sdw-login-footer {
    margin-top: 48px;
    font-size: 13px;
    color: #4f5b62;
    border-top: 1px solid #cfd6dc;
    padding-top: 18px;
}

@media (max-width: 900px) {
    .sdw-login {
        grid-template-columns: 1fr;
    }

    .sdw-login-info,
    .sdw-login-form-area {
        padding: 32px 24px;
    }

    .sdw-login-info {
        border-left: 0;
        border-top: 10px solid #009889;
    }

    .sdw-login-info h1 {
        font-size: 30px;
    }

    .sdw-login-info p {
        font-size: 16px;
    }
}

.sdw-login-event-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 18px;
}

.sdw-login-logo-box {
    width: 360px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    margin-bottom: 22px;
}

.sdw-login-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {
    .sdw-login-event-title {
        align-items: center;
        text-align: center;
    }

    .sdw-login-logo-box {
        width: 260px;
        height: 140px;
        justify-content: center;
        margin-bottom: 18px;
    }
}