.wp-auth-wrap {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f2f5; /* Facebook-like background */
    font-family: Arial, sans-serif;
}

.wp-auth-card {
    width: 380px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

/* LOGO */
.wp-auth-logo {
    font-size: 28px;
    font-weight: bold;
    color: #1877f2; /* Facebook blue */
    margin-bottom: 10px;
}

/* TITLE */
.wp-auth-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.wp-auth-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/* INPUTS */
#wpLoginForm input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

#wpLoginForm input:focus {
    border-color: #1877f2;
}

/* BUTTON */
#wpLoginForm button {
    width: 100%;
    padding: 12px;
    background: #1877f2;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

#wpLoginForm button:hover {
    background: #166fe5;
}

/* ERROR */
#wpLoginResult {
    margin-top: 12px;
    color: red;
    font-size: 13px;
}