/* AUTH WRAPPER */
.dms-auth-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 60px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* INPUTS */
.dms-auth-wrapper input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    outline: none;
}

.dms-auth-wrapper input:focus {
    border-color: #22c55e;
}

/* BUTTON */
.dms-auth-wrapper button {
    width: 100%;
    padding: 12px;
    background: #22c55e;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* MESSAGE BOX */
.dms-msg {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.dms-msg.success {
    background: #dcfce7;
    color: #166534;
}

.dms-msg.error {
    background: #fee2e2;
    color: #991b1b;
}

/* LOADING STATE */
.dms-loading {
    opacity: 0.6;
    pointer-events: none;
}

.dms-auth-wrapper form {
    display: flex;
    flex-direction: column;
}