/* =============================================================================
   Sync.Land — Artist Form Styles
   ============================================================================= */

.fml-artist-form {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}
.fml-artist-form h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}
.fml-artist-form .fml-field {
    margin-bottom: 18px;
}
.fml-artist-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}
.fml-artist-form .required::after {
    content: " *";
    color: #dc3545;
}
.fml-artist-form input[type="text"],
.fml-artist-form input[type="url"],
.fml-artist-form input[type="email"],
.fml-artist-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.fml-artist-form input::placeholder,
.fml-artist-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.fml-artist-form input:focus,
.fml-artist-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}
.fml-artist-form .fml-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.fml-artist-form .fml-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}
.fml-artist-form .fml-socials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 600px) {
    .fml-artist-form .fml-socials-grid {
        grid-template-columns: 1fr;
    }
}
.fml-artist-form .fml-social-field label i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}
.fml-artist-form .fml-image-preview {
    max-width: 150px;
    border-radius: 8px;
    margin-top: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.fml-artist-form .fml-submit {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    display: block;
    width: 100%;
}
.fml-artist-form .fml-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
.fml-artist-form .fml-file-input {
    padding: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}
.fml-artist-form .fml-file-input:hover {
    border-color: #6366f1;
}
.fml-artist-form .fml-help {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Success / error states */
.fml-form-success {
    text-align: center;
    padding: 30px;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    margin: 20px 0;
}
.fml-form-success h2 {
    color: #fff;
}
.fml-form-success .button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.fml-form-error {
    padding: 15px;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    margin-bottom: 20px;
    color: #ef4444;
}
