/**
 * Platform Management - Main Styles
 * @package PlatformNetwork
 * @since 1.0.0
 */

/* Signup Form */
.platform-signup {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.platform-signup h2 {
    margin-top: 0;
    color: #2c5f2d;
}

.signup-form .form-group {
    margin-bottom: 1.5rem;
}

.signup-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.signup-form input:focus {
    border-color: #2c5f2d;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.subdomain-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subdomain-input input {
    flex: 1;
}

.subdomain-input span {
    color: #666;
    font-weight: 500;
}

.signup-form small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.875rem;
}

.signup-form button {
    width: 100%;
    padding: 1rem;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.signup-form button:hover {
    background: #1f4420;
}

.signup-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#signup-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
}

#signup-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#signup-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Features Grid */
.platform-features {
    margin: 3rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.feature h3 {
    margin-top: 0;
    color: #2c5f2d;
    font-size: 1.25rem;
}

.feature p {
    margin-bottom: 0;
    color: #666;
}
