/* Modern Container */
.ceovw-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

/* Typography */
.ceovw-container h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #111827;
    text-align: center;
    line-height: 1.3;
}

/* Form Fields */
.ceovw-field {
    margin-bottom: 22px;
}
.ceovw-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}
.ceovw-field input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background-color: #f9fafb;
    color: #1f2937;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.ceovw-field input:focus {
    border-color: var(--ceovw-brand, #3b82f6);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    outline: none;
}

/* Actions & Links */
.ceovw-actions {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 24px;
}
.ceovw-actions a {
    color: var(--ceovw-brand, #3b82f6);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}
.ceovw-actions a:hover {
    text-decoration: underline;
}

/* Primary Button */
.ceovw-primary {
    width: 100%;
    padding: 14px;
    background-color: var(--ceovw-brand, #3b82f6);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}
.ceovw-primary:hover {
    filter: brightness(0.9);
}
.ceovw-primary:active {
    transform: scale(0.98);
}

/* Switcher */
.ceovw-switch {
    text-align: center;
    margin-top: 24px;
    color: #6b7280;
    font-size: 15px;
}
.ceovw-switch a {
    color: var(--ceovw-brand, #3b82f6);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}
.ceovw-switch a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .ceovw-container {
        margin: 30px 15px;
        padding: 30px 20px;
    }
    .ceovw-container h1 {
        font-size: 22px;
    }
    .ceovw-field input {
        padding: 12px 14px;
    }
}