/* ============================================
   GUEST UPLOAD FORMS & STYLES
   ============================================ */

.web-guest-button {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
}

.web-guest-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.guest-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.guest-form-header h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.guest-form-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.guest-form {
    padding: 0 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0f9ff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.form-notice svg {
    color: #0ea5e9;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-notice p {
    margin: 0;
    color: #0369a1;
    font-size: 14px;
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.resend-button {
    width: 100%;
    background: transparent;
    color: #667eea;
    border: none;
    padding: 12px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.resend-button:hover {
    color: #764ba2;
}

.app-preference {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
    margin-top: 16px;
    padding: 0 20px;
}

.app-preference svg {
    color: #10B981;
    flex-shrink: 0;
}

.dev-notice {
    background: #FEF3C7;
    padding: 12px;
    border-radius: 8px;
    margin: 16px 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .guest-form {
        padding: 0 12px;
    }
    
    .form-icon {
        width: 64px;
        height: 64px;
    }
    
    .form-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .guest-form-header h2 {
        font-size: 20px;
    }
}

