/* Styles extracted from claim-profile.php */

.claim-profile {
    padding: 40px 20px;
}

.claim-profile .claim-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.claim-profile .claim-intro h1 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.claim-profile .claim-intro p {
    font-size: 1.1em;
    color: #666;
}

.claim-profile .auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.claim-profile .auth-box {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.claim-profile .auth-box h2 {
    margin-top: 0;
    color: #2c5f2d;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.claim-profile .auth-box p {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.claim-profile .form-group {
    margin-bottom: 20px;
}

.claim-profile .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.claim-profile .form-group input,
.claim-profile .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

.claim-profile .form-group input:focus,
.claim-profile .form-group select:focus {
    outline: none;
    border-color: #2c5f2d;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.claim-profile .btn {
    width: 100%;
    padding: 14px;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.claim-profile .btn:hover {
    background: #1f4320;
}

.claim-profile .message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.claim-profile .message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.claim-profile .message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.claim-profile .divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.claim-profile .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.claim-profile .divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .claim-profile .auth-container {
        grid-template-columns: 1fr;
    }
}

.claim-profile .claim-message-wrap {
    max-width: 900px;
    margin: 0 auto;
}

/* Registration UI helpers */
#existing-player-group,
#new-player-group {
    display: none;
}

.claim-profile .register-help {
    display: block;
    margin-top: 5px;
    color: #666;
}

.claim-profile .honeypot-field {
    position: absolute;
    left: -9999px;
}

.claim-profile .registration-closed {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.claim-profile .registration-closed__title {
    font-size: 1.1em;
    margin-bottom: 10px;
}
