/* ===============================
   SALES LOGIN – FINAL FIX
================================ */

.oss-login-wrapper {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Title */
.oss-login-wrapper h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.oss-login-wrapper p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Error */
.oss-error {
    background: #ffecec;
    color: #b00020;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 420px;
}

/* Form card */
.oss-login-form {
    width: 420px;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Labels */
.oss-login-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* Inputs */
.oss-login-form input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #f7f9fc;
}

.oss-login-form input:focus {
    outline: none;
    border-color: #ff0000;
    background: #fff;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(to right, #ff0000, #b30000);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.login-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}