/* CSS custom del login */
.playority-login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: #1c1c1c;
    border-radius: 10px;
    color: #f1f1f1;
    font-family: Arial, sans-serif;
}

.playority-login-description {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ddd;
}

.playority-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #2a2a2a;
    color: #fff;
    font-size: 15px;
}

.playority-button {
    padding: 10px 20px;
    background-color: #3f3fff;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}

.playority-button.purple {
    background-color: #7d3cff;
}

.playority-button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.playority-message {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.playority-message.success {
    color: #7fff7f;
}

.playority-message.error {
    color: #ff6b6b;
}
