.wll-login-form {
    max-width: 440px;
    margin: 2rem auto;
    padding: 2rem 2.5rem;
    background: #f8fafc;
    border: 1px solid #c9d6e3;
    border-top: 4px solid #1e73be;
    border-radius: 4px;
    font-family: inherit;
    color: #1a2a3a;
}

.wll-login-form .wll-error {
    margin: 0 0 1.25rem;
    padding: 0.6rem 0.9rem;
    background: #fff3f3;
    border-left: 4px solid #c0392b;
    color: #c0392b;
    font-size: 0.875rem;
    border-radius: 2px;
}

.wll-livestream-introduction {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #d0dce8;
}

.wll-livestream-introduction p {
    margin: 0;
    font-size: 0.875rem;
    color: #4a5a6a;
    line-height: 1.5;
}

.wll-login-form form p {
    margin: 0 0 1.25rem;
}

.wll-login-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3a5068;
}

.wll-login-form input[type="email"],
.wll-login-form input[type="password"] {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    margin-top: 0.35rem;
    background: #fff;
    border: 1px solid #b0bfcc;
    border-radius: 3px;
    font-size: 0.95rem;
    color: #1a2a3a;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.wll-login-form input[type="email"]:focus,
.wll-login-form input[type="password"]:focus {
    outline: none;
    border-color: #1e73be;
    box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.15);
}

.wll-login-form button[type="submit"] {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: #1e73be;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.15s;
}

.wll-login-form button[type="submit"]:hover {
    background: #155a96;
}